Class: Stripe::ConfirmationTokenCreateParams::PaymentMethodOptions::Card

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/confirmation_token_create_params.rb

Defined Under Namespace

Classes: Installments

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(installments: nil) ⇒ Card

Returns a new instance of Card.



609
610
611
# File 'lib/stripe/params/confirmation_token_create_params.rb', line 609

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

Instance Attribute Details

#installmentsObject

Installment configuration for payments confirmed using this ConfirmationToken.



607
608
609
# File 'lib/stripe/params/confirmation_token_create_params.rb', line 607

def installments
  @installments
end