Class: Stripe::V2::MoneyManagement::FinancialAccountService::CloseParams::ForwardingSettings

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(payment_method: nil, payout_method: nil) ⇒ ForwardingSettings

Returns a new instance of ForwardingSettings.



52
53
54
55
# File 'lib/stripe/services/v2/money_management/financial_account_service.rb', line 52

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.



48
49
50
# File 'lib/stripe/services/v2/money_management/financial_account_service.rb', line 48

def payment_method
  @payment_method
end

#payout_methodObject

The address to send forwarded payouts to.



50
51
52
# File 'lib/stripe/services/v2/money_management/financial_account_service.rb', line 50

def payout_method
  @payout_method
end