Class: Stripe::V2::MoneyManagement::InboundTransferService::CreateParams::To
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::InboundTransferService::CreateParams::To
- Defined in:
- lib/stripe/services/v2/money_management/inbound_transfer_service.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
Constructor Details
#initialize(currency: nil, financial_account: nil) ⇒ To
Returns a new instance of To.
64 65 66 67 |
# File 'lib/stripe/services/v2/money_management/inbound_transfer_service.rb', line 64 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.
60 61 62 |
# File 'lib/stripe/services/v2/money_management/inbound_transfer_service.rb', line 60 def currency @currency end |
#financial_account ⇒ Object
The FinancialAccount that funds will land in.
62 63 64 |
# File 'lib/stripe/services/v2/money_management/inbound_transfer_service.rb', line 62 def financial_account @financial_account end |