Class: Stripe::V2::MoneyManagement::OutboundPaymentService::CreateParams::From
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::OutboundPaymentService::CreateParams::From
- Defined in:
- lib/stripe/services/v2/money_management/outbound_payment_service.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.
27 28 29 30 |
# File 'lib/stripe/services/v2/money_management/outbound_payment_service.rb', line 27 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.
23 24 25 |
# File 'lib/stripe/services/v2/money_management/outbound_payment_service.rb', line 23 def currency @currency end |
#financial_account ⇒ Object
The FinancialAccount that funds were pulled from.
25 26 27 |
# File 'lib/stripe/services/v2/money_management/outbound_payment_service.rb', line 25 def financial_account @financial_account end |