Class: Stripe::TokenCreateParams::CvcUpdate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TokenCreateParams::CvcUpdate
- Defined in:
- lib/stripe/params/token_create_params.rb
Instance Attribute Summary collapse
-
#cvc ⇒ Object
The CVC value, in string form.
Instance Method Summary collapse
-
#initialize(cvc: nil) ⇒ CvcUpdate
constructor
A new instance of CvcUpdate.
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.
755 756 757 |
# File 'lib/stripe/params/token_create_params.rb', line 755 def initialize(cvc: nil) @cvc = cvc end |
Instance Attribute Details
#cvc ⇒ Object
The CVC value, in string form.
753 754 755 |
# File 'lib/stripe/params/token_create_params.rb', line 753 def cvc @cvc end |