Class: Stripe::Token::CreateParams::CvcUpdate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Token::CreateParams::CvcUpdate
- Defined in:
- lib/stripe/resources/token.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
Constructor Details
#initialize(cvc: nil) ⇒ CvcUpdate
Returns a new instance of CvcUpdate.
718 719 720 |
# File 'lib/stripe/resources/token.rb', line 718 def initialize(cvc: nil) @cvc = cvc end |
Instance Attribute Details
#cvc ⇒ Object
The CVC value, in string form.
716 717 718 |
# File 'lib/stripe/resources/token.rb', line 716 def cvc @cvc end |