Class: Stripe::TokenCreateParams::CvcUpdate

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/token_create_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(cvc: nil) ⇒ CvcUpdate

Returns a new instance of CvcUpdate.



723
724
725
# File 'lib/stripe/params/token_create_params.rb', line 723

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

Instance Attribute Details

#cvcObject

The CVC value, in string form.



721
722
723
# File 'lib/stripe/params/token_create_params.rb', line 721

def cvc
  @cvc
end