Class: Stripe::V2::MoneyManagement::OutboundPaymentCreateParams::From
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::OutboundPaymentCreateParams::From
- Defined in:
- lib/stripe/params/v2/money_management/outbound_payment_create_params.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
Describes the FinancialAmount’s currency drawn from.
-
#financial_account ⇒ Object
The FinancialAccount that funds were pulled from.
Instance Method Summary collapse
-
#initialize(currency: nil, financial_account: nil) ⇒ From
constructor
A new instance of From.
Methods inherited from RequestParams
Constructor Details
#initialize(currency: nil, financial_account: nil) ⇒ From
Returns a new instance of From.
35 36 37 38 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 35 def initialize(currency: nil, financial_account: nil) @currency = currency @financial_account = financial_account end |
Instance Attribute Details
#currency ⇒ Object
Describes the FinancialAmount’s currency drawn from.
31 32 33 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 31 def currency @currency end |
#financial_account ⇒ Object
The FinancialAccount that funds were pulled from.
33 34 35 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 33 def financial_account @financial_account end |