Class: Stripe::CustomerCashBalanceService::UpdateParams::Settings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::CustomerCashBalanceService::UpdateParams::Settings
- Defined in:
- lib/stripe/services/customer_cash_balance_service.rb
Instance Attribute Summary collapse
-
#reconciliation_mode ⇒ Object
Controls how funds transferred by the customer are applied to payment intents and invoices.
Instance Method Summary collapse
-
#initialize(reconciliation_mode: nil) ⇒ Settings
constructor
A new instance of Settings.
Methods inherited from RequestParams
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_mode ⇒ Object
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 |