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

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

Defined Under Namespace

Classes: BankAccounts, 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, financial_accounts: nil) ⇒ OutboundTransfers

Returns a new instance of OutboundTransfers.



1228
1229
1230
1231
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1228

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

Instance Attribute Details

#bank_accountsObject

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



1224
1225
1226
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1224

def bank_accounts
  @bank_accounts
end

#financial_accountsObject

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



1226
1227
1228
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1226

def financial_accounts
  @financial_accounts
end