Class: Aws::PaymentCryptographyData::Types::CardVerificationValue1
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::CardVerificationValue1
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Card data parameters that are required to verify CVV (Card Verification Value) for the payment card.
Constant Summary collapse
- SENSITIVE =
[:card_expiry_date, :service_code]
Instance Attribute Summary collapse
-
#card_expiry_date ⇒ String
The expiry date of a payment card.
-
#service_code ⇒ String
The service code of the payment card.
Instance Attribute Details
#card_expiry_date ⇒ String
The expiry date of a payment card.
301 302 303 304 305 306 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 301 class CardVerificationValue1 < Struct.new( :card_expiry_date, :service_code) 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).
301 302 303 304 305 306 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 301 class CardVerificationValue1 < Struct.new( :card_expiry_date, :service_code) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end |