Class: Stripe::V2::MoneyManagement::InboundTransferCreateParams::To
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::InboundTransferCreateParams::To
- Defined in:
- lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
The currency in which funds will land in.
-
#financial_account ⇒ Object
The FinancialAccount that funds will land in.
Instance Method Summary collapse
-
#initialize(currency: nil, financial_account: nil) ⇒ To
constructor
A new instance of To.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(currency: nil, financial_account: nil) ⇒ To
Returns a new instance of To.
27 28 29 30 |
# File 'lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb', line 27 def initialize(currency: nil, financial_account: nil) @currency = currency @financial_account = financial_account end |
Instance Attribute Details
#currency ⇒ Object
The currency in which funds will land in.
23 24 25 |
# File 'lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb', line 23 def currency @currency end |
#financial_account ⇒ Object
The FinancialAccount that funds will land in.
25 26 27 |
# File 'lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb', line 25 def financial_account @financial_account end |