Class: Stripe::Customer::CreateParams::CashBalance::Settings
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Customer::CreateParams::CashBalance::Settings
- Defined in:
- lib/stripe/resources/customer.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.
441 442 443 |
# File 'lib/stripe/resources/customer.rb', line 441 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).
439 440 441 |
# File 'lib/stripe/resources/customer.rb', line 439 def reconciliation_mode @reconciliation_mode end |