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.
719 720 721 |
# File 'lib/stripe/services/token_service.rb', line 719 def initialize(cvc: nil) @cvc = cvc end |
Instance Attribute Details
#cvc ⇒ Object
The CVC value, in string form.
717 718 719 |
# File 'lib/stripe/services/token_service.rb', line 717 def cvc @cvc end |