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, FinancialAccounts
Instance Attribute Summary collapse
-
#bank_accounts ⇒ Object
Can send funds from a FinancialAccount to a bank account 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, 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, financial_accounts: nil) ⇒ OutboundTransfers
Returns a new instance of OutboundTransfers.
1247 1248 1249 1250 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1247 def initialize(bank_accounts: nil, financial_accounts: nil) @bank_accounts = bank_accounts @financial_accounts = financial_accounts end |
Instance Attribute Details
#bank_accounts ⇒ Object
Can send funds from a FinancialAccount to a bank account owned by yourself.
1243 1244 1245 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1243 def bank_accounts @bank_accounts end |
#financial_accounts ⇒ Object
Can send funds from a FinancialAccount to another FinancialAccount owned by yourself.
1245 1246 1247 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1245 def financial_accounts @financial_accounts end |