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.



700
701
702
# File 'lib/stripe/services/token_service.rb', line 700

def initialize(cvc: nil)
  @cvc = cvc
end

Instance Attribute Details

#cvcObject

The CVC value, in string form.



698
699
700
# File 'lib/stripe/services/token_service.rb', line 698

def cvc
  @cvc
end