Class: Stripe::V2::MoneyManagement::FinancialAccountService::CloseParams::ForwardingSettings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAccountService::CloseParams::ForwardingSettings
- Defined in:
- lib/stripe/services/v2/money_management/financial_account_service.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
Constructor Details
#initialize(payment_method: nil, payout_method: nil) ⇒ ForwardingSettings
Returns a new instance of ForwardingSettings.
55 56 57 58 |
# File 'lib/stripe/services/v2/money_management/financial_account_service.rb', line 55 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.
51 52 53 |
# File 'lib/stripe/services/v2/money_management/financial_account_service.rb', line 51 def payment_method @payment_method end |
#payout_method ⇒ Object
The address to send forwarded payouts to.
53 54 55 |
# File 'lib/stripe/services/v2/money_management/financial_account_service.rb', line 53 def payout_method @payout_method end |