Class: Stripe::V2::MoneyManagement::PayoutIntentCreateParams::From
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::PayoutIntentCreateParams::From
- Defined in:
- lib/stripe/params/v2/money_management/payout_intent_create_params.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
The currency of the financial account.
-
#financial_account ⇒ Object
The FinancialAccount that funds are 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.
14 15 16 17 |
# File 'lib/stripe/params/v2/money_management/payout_intent_create_params.rb', line 14 def initialize(currency: nil, financial_account: nil) @currency = currency @financial_account = financial_account end |
Instance Attribute Details
#currency ⇒ Object
The currency of the financial account.
10 11 12 |
# File 'lib/stripe/params/v2/money_management/payout_intent_create_params.rb', line 10 def currency @currency end |
#financial_account ⇒ Object
The FinancialAccount that funds are pulled from.
12 13 14 |
# File 'lib/stripe/params/v2/money_management/payout_intent_create_params.rb', line 12 def financial_account @financial_account end |