Class: Stripe::V2::MoneyManagement::OutboundPaymentService::CreateParams::From

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(currency: nil, financial_account: nil) ⇒ From

Returns a new instance of From.



68
69
70
71
# File 'lib/stripe/services/v2/money_management/outbound_payment_service.rb', line 68

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

Instance Attribute Details

#currencyObject

Describes the FinancialAmount’s currency drawn from.



64
65
66
# File 'lib/stripe/services/v2/money_management/outbound_payment_service.rb', line 64

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds were pulled from.



66
67
68
# File 'lib/stripe/services/v2/money_management/outbound_payment_service.rb', line 66

def 
  @financial_account
end