Dwolla\Account::full PHP Метод

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

Returns full account information for the account associated with the current OAuth token.
public full ( string $alternate_token = false ) : String[]
$alternate_token string OAuth token value to be used instead of the current setting in the Settings class.
Результат String[] Array of full account information.
    public function full($alternate_token = false)
    {
        return self::_get('/users/', ['oauth_token' => $alternate_token ? $alternate_token : self::$settings->oauth_token]);
    }