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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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 =
[:card_expiry_date, :service_code]

Instance Attribute Summary collapse

Instance Attribute Details

#card_expiry_dateString

The expiry date of a payment card.

Returns:

  • (String)


301
302
303
304
305
306
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 301

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

#service_codeString

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

Returns:

  • (String)


301
302
303
304
305
306
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 301

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