Class: Stripe::TokenService::CreateParams::CvcUpdate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TokenService::CreateParams::CvcUpdate
- Defined in:
- lib/stripe/services/token_service.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.
700 701 702 |
# File 'lib/stripe/services/token_service.rb', line 700 def initialize(cvc: nil) @cvc = cvc end |
Instance Attribute Details
#cvc ⇒ Object
The CVC value, in string form.
698 699 700 |
# File 'lib/stripe/services/token_service.rb', line 698 def cvc @cvc end |