Class: Aws::PaymentCryptographyData::Types::DynamicCardVerificationCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::DynamicCardVerificationCode
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Parameters that are required to generate or verify Dynamic Card Verification Value (dCVV).
Constant Summary collapse
- SENSITIVE =
[:track_data]
Instance Attribute Summary collapse
-
#application_transaction_counter ⇒ String
The transaction counter value that comes from the terminal.
-
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
-
#track_data ⇒ String
The data on the two tracks of magnetic cards used for financial transactions.
-
#unpredictable_number ⇒ String
A random number generated by the issuer.
Instance Attribute Details
#application_transaction_counter ⇒ String
The transaction counter value that comes from the terminal.
676 677 678 679 680 681 682 683 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 676 class DynamicCardVerificationCode < Struct.new( :unpredictable_number, :pan_sequence_number, :application_transaction_counter, :track_data) SENSITIVE = [:track_data] include Aws::Structure end |
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
676 677 678 679 680 681 682 683 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 676 class DynamicCardVerificationCode < Struct.new( :unpredictable_number, :pan_sequence_number, :application_transaction_counter, :track_data) SENSITIVE = [:track_data] include Aws::Structure end |
#track_data ⇒ String
The data on the two tracks of magnetic cards used for financial transactions. This includes the cardholder name, PAN, expiration date, bank ID (BIN) and several other numbers the issuing bank uses to validate the data received.
676 677 678 679 680 681 682 683 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 676 class DynamicCardVerificationCode < Struct.new( :unpredictable_number, :pan_sequence_number, :application_transaction_counter, :track_data) SENSITIVE = [:track_data] include Aws::Structure end |
#unpredictable_number ⇒ String
A random number generated by the issuer.
676 677 678 679 680 681 682 683 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 676 class DynamicCardVerificationCode < Struct.new( :unpredictable_number, :pan_sequence_number, :application_transaction_counter, :track_data) SENSITIVE = [:track_data] include Aws::Structure end |