Class: Stripe::Checkout::SessionCreateParams::PaymentMethodOptions::Card::Installments
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionCreateParams::PaymentMethodOptions::Card::Installments
- Defined in:
- lib/stripe/params/checkout/session_create_params.rb
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Setting to true enables installments for this Checkout Session.
Instance Method Summary collapse
-
#initialize(enabled: nil) ⇒ Installments
constructor
A new instance of Installments.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil) ⇒ Installments
Returns a new instance of Installments.
995 996 997 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 995 def initialize(enabled: nil) @enabled = enabled end |
Instance Attribute Details
#enabled ⇒ Object
Setting to true enables installments for this Checkout Session. Setting to false will prevent any installment plan from applying to a payment.
993 994 995 |
# File 'lib/stripe/params/checkout/session_create_params.rb', line 993 def enabled @enabled end |