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

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

Disables auto-withdrawal status of the account associated with the current OAuth token.
public disableAutoWithdrawal ( string $alternate_token = false ) : string
$alternate_token string OAuth token value to be used instead of the current setting in the Settings class.
Результат string Either "Enabled" or "Disabled"
    public function disableAutoWithdrawal($alternate_token = false)
    {
        return self::toggleAutoWithdrawalStatus(false, '', $alternate_token);
    }