Class: Aws::PaymentCryptographyData::Types::SessionKeyEmv2000
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::SessionKeyEmv2000
- Defined in:
- gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Parameters to derive session key for an Emv2000 payment card for ARQC verification.
Constant Summary collapse
- SENSITIVE =
[:primary_account_number]
Instance Attribute Summary collapse
-
#application_transaction_counter ⇒ String
The transaction counter that is provided by the terminal during transaction processing.
-
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
-
#primary_account_number ⇒ String
The Primary Account Number (PAN) of the cardholder.
Instance Attribute Details
#application_transaction_counter ⇒ String
The transaction counter that is provided by the terminal during transaction processing.
2032 2033 2034 2035 2036 2037 2038 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2032 class SessionKeyEmv2000 < Struct.new( :primary_account_number, :pan_sequence_number, :application_transaction_counter) SENSITIVE = [:primary_account_number] include Aws::Structure end |
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
2032 2033 2034 2035 2036 2037 2038 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2032 class SessionKeyEmv2000 < Struct.new( :primary_account_number, :pan_sequence_number, :application_transaction_counter) SENSITIVE = [:primary_account_number] include Aws::Structure end |
#primary_account_number ⇒ String
The Primary Account Number (PAN) of the cardholder. A PAN is a unique identifier for a payment credit or debit card and associates the card to a specific account holder.
2032 2033 2034 2035 2036 2037 2038 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2032 class SessionKeyEmv2000 < Struct.new( :primary_account_number, :pan_sequence_number, :application_transaction_counter) SENSITIVE = [:primary_account_number] include Aws::Structure end |