Dwolla\Account::getAutoWithdrawalStatus PHP Method

getAutoWithdrawalStatus() public method

Gets auto-withdrawal status of the account associated with the current OAuth token.
public getAutoWithdrawalStatus ( 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[] Status (with funding id if applicable)
    public function getAutoWithdrawalStatus($alternate_token = false)
    {
        return self::_get('/accounts/features/auto_withdrawl', ['oauth_token' => $alternate_token ? $alternate_token : self::$settings->oauth_token]);
    }