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

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

Constructor Details

#initialize(cvc: nil) ⇒ CvcUpdate

Returns a new instance of CvcUpdate.



790
791
792
# File 'lib/stripe/params/token_create_params.rb', line 790

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

Instance Attribute Details

#cvcObject

The CVC value, in string form.



788
789
790
# File 'lib/stripe/params/token_create_params.rb', line 788

def cvc
  @cvc
end