Class: Stripe::V2::MoneyManagement::InboundTransferService::CreateParams::To

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/v2/money_management/inbound_transfer_service.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.



28
29
30
31
# File 'lib/stripe/services/v2/money_management/inbound_transfer_service.rb', line 28

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

Instance Attribute Details

#currencyObject

The currency in which funds will land in.



24
25
26
# File 'lib/stripe/services/v2/money_management/inbound_transfer_service.rb', line 24

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds will land in.



26
27
28
# File 'lib/stripe/services/v2/money_management/inbound_transfer_service.rb', line 26

def 
  @financial_account
end