Class: Aws::PaymentCryptographyData::Types::DiscoverDynamicCardVerificationCode
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::PaymentCryptographyData::Types::DiscoverDynamicCardVerificationCode
 
- Defined in:
- gems/aws-sdk-paymentcryptographydata/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.
| 571 572 573 574 575 576 577 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 571 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.
| 571 572 573 574 575 576 577 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 571 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.
| 571 572 573 574 575 576 577 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 571 class DiscoverDynamicCardVerificationCode < Struct.new( :card_expiry_date, :unpredictable_number, :application_transaction_counter) SENSITIVE = [:card_expiry_date] include Aws::Structure end |