Class: Aws::PaymentCryptographyData::Types::CardVerificationValue1

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb

Overview

Card data parameters that are required to verify CVV (Card Verification Value) for the payment card.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#card_expiry_dateString

The expiry date of a payment card.

Returns:

  • (String)


256
257
258
259
260
261
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 256

class CardVerificationValue1 < Struct.new(
  :card_expiry_date,
  :service_code)
  SENSITIVE = []
  include Aws::Structure
end

#service_codeString

The service code of the payment card. This is different from Card Security Code (CSC).

Returns:

  • (String)


256
257
258
259
260
261
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 256

class CardVerificationValue1 < Struct.new(
  :card_expiry_date,
  :service_code)
  SENSITIVE = []
  include Aws::Structure
end