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

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 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)


55
56
57
58
59
60
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 55

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)


55
56
57
58
59
60
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 55

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