Class: Aws::PaymentCryptographyData::Types::AmexCardSecurityCodeVersion2

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

Overview

Card data parameters that are required to generate a Card Security Code (CSC2) for an AMEX 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)


100
101
102
103
104
105
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 100

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

#service_codeString

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

Returns:

  • (String)


100
101
102
103
104
105
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 100

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