Class: Stripe::V2::MoneyManagement::OutboundPaymentCreateParams::From

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/outbound_payment_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.



43
44
45
46
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 43

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

Instance Attribute Details

#currencyObject

Describes the FinancialAmount’s currency drawn from.



39
40
41
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 39

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds were pulled from.



41
42
43
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 41

def 
  @financial_account
end