Class: Aws::PaymentCryptographyData::Types::SessionKeyEmvCommon
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::SessionKeyEmvCommon
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Parameters to derive session key for an Emv common 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.
2061 2062 2063 2064 2065 2066 2067 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2061 class SessionKeyEmvCommon < 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).
2061 2062 2063 2064 2065 2066 2067 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2061 class SessionKeyEmvCommon < 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.
2061 2062 2063 2064 2065 2066 2067 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2061 class SessionKeyEmvCommon < Struct.new( :primary_account_number, :pan_sequence_number, :application_transaction_counter) SENSITIVE = [:primary_account_number] include Aws::Structure end |