Class: Stripe::CustomerCashBalanceService::UpdateParams::Settings

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/customer_cash_balance_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(reconciliation_mode: nil) ⇒ Settings

Returns a new instance of Settings.



20
21
22
# File 'lib/stripe/services/customer_cash_balance_service.rb', line 20

def initialize(reconciliation_mode: nil)
  @reconciliation_mode = reconciliation_mode
end

Instance Attribute Details

#reconciliation_modeObject

Controls how funds transferred by the customer are applied to payment intents and invoices. Valid options are ‘automatic`, `manual`, or `merchant_default`. For more information about these reconciliation modes, see [Reconciliation](stripe.com/docs/payments/customer-balance/reconciliation).



18
19
20
# File 'lib/stripe/services/customer_cash_balance_service.rb', line 18

def reconciliation_mode
  @reconciliation_mode
end