Class: Aws::PaymentCryptographyData::Types::SessionKeyVisa
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::SessionKeyVisa
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Parameters to derive session key for Visa payment card for ARQC verification.
Constant Summary collapse
- SENSITIVE =
[:primary_account_number]
Instance Attribute Summary collapse
-
#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
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
2119 2120 2121 2122 2123 2124 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2119 class SessionKeyVisa < Struct.new( :primary_account_number, :pan_sequence_number) 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.
2119 2120 2121 2122 2123 2124 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2119 class SessionKeyVisa < Struct.new( :primary_account_number, :pan_sequence_number) SENSITIVE = [:primary_account_number] include Aws::Structure end |