Class: Stripe::TokenService::CreateParams::CvcUpdate

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/token_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

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

#cvcObject

The CVC value, in string form.



717
718
719
# File 'lib/stripe/services/token_service.rb', line 717

def cvc
  @cvc
end