Stripe\Source::verify PHP Метод

verify() публичный Метод

public verify ( array | null $params = null, array | string | null $options = null ) : stripe\BankAccount
$params array | null
$options array | string | null
Результат stripe\BankAccount The verified bank account.
    public function verify($params = null, $options = null)
    {
        $url = $this->instanceUrl() . '/verify';
        list($response, $opts) = $this->_request('post', $url, $params, $options);
        $this->refreshFrom($response, $opts);
        return $this;
    }