Dwolla\Account::full PHP Method

full() public method

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.
return 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]);
    }