Dwolla\Account::disableAutoWithdrawal PHP Method

disableAutoWithdrawal() public method

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.
return string Either "Enabled" or "Disabled"
    public function disableAutoWithdrawal($alternate_token = false)
    {
        return self::toggleAutoWithdrawalStatus(false, '', $alternate_token);
    }