Class: Stripe::V2::MoneyManagement::FinancialAccountCloseParams::ForwardingSettings

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/financial_account_close_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(payment_method: nil, payout_method: nil) ⇒ ForwardingSettings

Returns a new instance of ForwardingSettings.



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

def initialize(payment_method: nil, payout_method: nil)
  @payment_method = payment_method
  @payout_method = payout_method
end

Instance Attribute Details

#payment_methodObject

The address to send forwarded payments to.



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

def payment_method
  @payment_method
end

#payout_methodObject

The address to send forwarded payouts to.



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

def payout_method
  @payout_method
end