Class: Stripe::V2::Core::AccountCreateParams::Configuration::MoneyManager::Capabilities::OutboundTransfers
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Configuration::MoneyManager::Capabilities::OutboundTransfers
- Defined in:
- lib/stripe/params/v2/core/account_create_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.
3260 3261 3262 3263 3264 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3260 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.
3254 3255 3256 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3254 def bank_accounts @bank_accounts end |
#crypto_wallets ⇒ Object
Can send funds from a FinancialAccount to a crypto wallet owned by yourself.
3256 3257 3258 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3256 def crypto_wallets @crypto_wallets end |
#financial_accounts ⇒ Object
Can send funds from a FinancialAccount to another FinancialAccount owned by yourself.
3258 3259 3260 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 3258 def financial_accounts @financial_accounts end |