Class: Stripe::V2::Core::AccountUpdateParams::Configuration::MoneyManager::Capabilities::OutboundTransfers
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Configuration::MoneyManager::Capabilities::OutboundTransfers
- Defined in:
- lib/stripe/params/v2/core/account_update_params.rb
Defined Under Namespace
Classes: BankAccounts, CryptoWallets, FinancialAccounts
Instance Attribute Summary collapse
-
#bank_accounts ⇒ Object
Can send funds from a FinancialAccount to a bank account owned by yourself.
-
#crypto_wallets ⇒ Object
Can send funds from a FinancialAccount to a crypto wallet owned by yourself.
-
#financial_accounts ⇒ Object
Can send funds from a FinancialAccount to another FinancialAccount owned by yourself.
Instance Method Summary collapse
-
#initialize(bank_accounts: nil, crypto_wallets: nil, financial_accounts: nil) ⇒ OutboundTransfers
constructor
A new instance of OutboundTransfers.
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_accounts ⇒ Object
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_wallets ⇒ Object
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_accounts ⇒ Object
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 |