Class: Aws::PaymentCryptographyData::Types::DynamicCardVerificationCode
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::PaymentCryptographyData::Types::DynamicCardVerificationCode
 
- Defined in:
- gems/aws-sdk-paymentcryptographydata/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.
| 705 706 707 708 709 710 711 712 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 705 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).
| 705 706 707 708 709 710 711 712 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 705 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.
| 705 706 707 708 709 710 711 712 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 705 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.
| 705 706 707 708 709 710 711 712 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 705 class DynamicCardVerificationCode < Struct.new( :unpredictable_number, :pan_sequence_number, :application_transaction_counter, :track_data) SENSITIVE = [:track_data] include Aws::Structure end |