Class: Stripe::V2::MoneyManagement::PayoutIntentCreateParams::From

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



14
15
16
17
# File 'lib/stripe/params/v2/money_management/payout_intent_create_params.rb', line 14

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

Instance Attribute Details

#currencyObject

The currency of the financial account.



10
11
12
# File 'lib/stripe/params/v2/money_management/payout_intent_create_params.rb', line 10

def currency
  @currency
end

#financial_accountObject

The FinancialAccount that funds are pulled from.



12
13
14
# File 'lib/stripe/params/v2/money_management/payout_intent_create_params.rb', line 12

def 
  @financial_account
end