Class: Aws::PaymentCryptographyData::Types::DiscoverDynamicCardVerificationCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::DiscoverDynamicCardVerificationCode
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Parameters that are required to generate or verify dCVC (Dynamic Card Verification Code).
Constant Summary collapse
- SENSITIVE =
[:card_expiry_date]
Instance Attribute Summary collapse
-
#application_transaction_counter ⇒ String
The transaction counter value that comes from the terminal.
-
#card_expiry_date ⇒ String
The expiry date of a payment card.
-
#unpredictable_number ⇒ String
A random number that is generated by the issuer.
Instance Attribute Details
#application_transaction_counter ⇒ String
The transaction counter value that comes from the terminal.
542 543 544 545 546 547 548 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 542 class DiscoverDynamicCardVerificationCode < Struct.new( :card_expiry_date, :unpredictable_number, :application_transaction_counter) SENSITIVE = [:card_expiry_date] include Aws::Structure end |
#card_expiry_date ⇒ String
The expiry date of a payment card.
542 543 544 545 546 547 548 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 542 class DiscoverDynamicCardVerificationCode < Struct.new( :card_expiry_date, :unpredictable_number, :application_transaction_counter) SENSITIVE = [:card_expiry_date] include Aws::Structure end |
#unpredictable_number ⇒ String
A random number that is generated by the issuer.
542 543 544 545 546 547 548 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 542 class DiscoverDynamicCardVerificationCode < Struct.new( :card_expiry_date, :unpredictable_number, :application_transaction_counter) SENSITIVE = [:card_expiry_date] include Aws::Structure end |