Class: Aws::PaymentCryptographyData::Types::SessionKeyDerivationValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::SessionKeyDerivationValue
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Note:
SessionKeyDerivationValue is a union - when making an API calls you must set exactly one of the members.
Parameters to derive session key value using a MAC EMV algorithm.
Direct Known Subclasses
ApplicationCryptogram, ApplicationTransactionCounter, Unknown
Defined Under Namespace
Classes: ApplicationCryptogram, ApplicationTransactionCounter, Unknown
Constant Summary collapse
- SENSITIVE =
[:application_cryptogram]
Instance Attribute Summary collapse
-
#application_cryptogram ⇒ String
The cryptogram provided by the terminal during transaction processing.
-
#application_transaction_counter ⇒ String
The transaction counter that is provided by the terminal during transaction processing.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#application_cryptogram ⇒ String
The cryptogram provided by the terminal during transaction processing.
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1998 class SessionKeyDerivationValue < Struct.new( :application_cryptogram, :application_transaction_counter, :unknown) SENSITIVE = [:application_cryptogram] include Aws::Structure include Aws::Structure::Union class ApplicationCryptogram < SessionKeyDerivationValue; end class ApplicationTransactionCounter < SessionKeyDerivationValue; end class Unknown < SessionKeyDerivationValue; end end |
#application_transaction_counter ⇒ String
The transaction counter that is provided by the terminal during transaction processing.
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1998 class SessionKeyDerivationValue < Struct.new( :application_cryptogram, :application_transaction_counter, :unknown) SENSITIVE = [:application_cryptogram] include Aws::Structure include Aws::Structure::Union class ApplicationCryptogram < SessionKeyDerivationValue; end class ApplicationTransactionCounter < SessionKeyDerivationValue; end class Unknown < SessionKeyDerivationValue; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1998 1999 2000 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1998 def unknown @unknown end |