Class: Stripe::V2::Core::AccountUpdateParams::Configuration::MoneyManager::Capabilities::OutboundTransfers

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_update_params.rb

Defined Under Namespace

Classes: BankAccounts, CryptoWallets, FinancialAccounts

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(bank_accounts: nil, crypto_wallets: nil, financial_accounts: nil) ⇒ OutboundTransfers

Returns a new instance of OutboundTransfers.



3282
3283
3284
3285
3286
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3282

def initialize(bank_accounts: nil, crypto_wallets: nil, financial_accounts: nil)
  @bank_accounts = bank_accounts
  @crypto_wallets = crypto_wallets
  @financial_accounts = financial_accounts
end

Instance Attribute Details

#bank_accountsObject

Can send funds from a FinancialAccount to a bank account owned by yourself.



3276
3277
3278
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3276

def bank_accounts
  @bank_accounts
end

#crypto_walletsObject

Can send funds from a FinancialAccount to a crypto wallet owned by yourself.



3278
3279
3280
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3278

def crypto_wallets
  @crypto_wallets
end

#financial_accountsObject

Can send funds from a FinancialAccount to another FinancialAccount owned by yourself.



3280
3281
3282
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 3280

def financial_accounts
  @financial_accounts
end