Class: Stripe::V2::MoneyManagement::OutboundPaymentQuoteCreateParams::From

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



23
24
25
26
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 23

def initialize(currency: nil, financial_account: nil)
  @currency = currency
  @financial_account = 
end

Instance Attribute Details

#currencyObject

Describes the FinancialAccount’s currency drawn from.



19
20
21
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 19

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds were pulled from.



21
22
23
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 21

def 
  @financial_account
end