Class: Aws::PaymentCryptographyData::Types::DynamicCardVerificationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::DynamicCardVerificationValue
- 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 =
[:card_expiry_date, :service_code]
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.
-
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
-
#service_code ⇒ String
The service code of the payment card.
Instance Attribute Details
#application_transaction_counter ⇒ String
The transaction counter value that comes from the terminal.
708 709 710 711 712 713 714 715 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 708 class DynamicCardVerificationValue < Struct.new( :pan_sequence_number, :card_expiry_date, :service_code, :application_transaction_counter) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end |
#card_expiry_date ⇒ String
The expiry date of a payment card.
708 709 710 711 712 713 714 715 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 708 class DynamicCardVerificationValue < Struct.new( :pan_sequence_number, :card_expiry_date, :service_code, :application_transaction_counter) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end |
#pan_sequence_number ⇒ String
A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).
708 709 710 711 712 713 714 715 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 708 class DynamicCardVerificationValue < Struct.new( :pan_sequence_number, :card_expiry_date, :service_code, :application_transaction_counter) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end |
#service_code ⇒ String
The service code of the payment card. This is different from Card Security Code (CSC).
708 709 710 711 712 713 714 715 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 708 class DynamicCardVerificationValue < Struct.new( :pan_sequence_number, :card_expiry_date, :service_code, :application_transaction_counter) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end |