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.



46
47
48
49
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 46

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

Instance Attribute Details

#currencyObject

Describes the FinancialAmount's currency drawn from.



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

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds were pulled from.



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

def 
  @financial_account
end