Class: Stripe::V2::MoneyManagement::OutboundPaymentQuoteCreateParams::From
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::OutboundPaymentQuoteCreateParams::From
- Defined in:
- lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
Describes the FinancialAccount’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
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(currency: nil, financial_account: nil) ⇒ From
Returns a new instance of From.
26 27 28 29 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 26 def initialize(currency: nil, financial_account: nil) @currency = currency @financial_account = financial_account end |
Instance Attribute Details
#currency ⇒ Object
Describes the FinancialAccount’s currency drawn from.
22 23 24 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 22 def currency @currency end |
#financial_account ⇒ Object
The FinancialAccount that funds were pulled from.
24 25 26 |
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 24 def financial_account @financial_account end |