Class: Stripe::V2::MoneyManagement::InboundTransferCreateParams::To

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(currency: nil, financial_account: nil) ⇒ To

Returns a new instance of To.



39
40
41
42
# File 'lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb', line 39

def initialize(currency: nil, financial_account: nil)
  @currency = currency
  @financial_account = 
end

Instance Attribute Details

#currencyObject

The currency in which funds will land in.



35
36
37
# File 'lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb', line 35

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds will land in.



37
38
39
# File 'lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb', line 37

def 
  @financial_account
end