Class: Stripe::V2::MoneyManagement::FinancialAccountCloseParams::ForwardingSettings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAccountCloseParams::ForwardingSettings
- Defined in:
- lib/stripe/params/v2/money_management/financial_account_close_params.rb
Instance Attribute Summary collapse
-
#payment_method ⇒ Object
The address to send forwarded payments to.
-
#payout_method ⇒ Object
The address to send forwarded payouts to.
Instance Method Summary collapse
-
#initialize(payment_method: nil, payout_method: nil) ⇒ ForwardingSettings
constructor
A new instance of ForwardingSettings.
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_method ⇒ Object
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_method ⇒ Object
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 |