Class: Aws::PaymentCryptographyData::Types::TranslationPinDataIsoFormat034

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-paymentcryptographydata/types.rb

Overview

Parameters that are required for tranlation between ISO9564 PIN format 0,3,4 tranlation.

Constant Summary collapse

SENSITIVE =
[:primary_account_number]

Instance Attribute Summary collapse

Instance Attribute Details

#primary_account_numberString

The Primary Account Number (PAN) of the cardholder. A PAN is a unique identifier for a payment credit or debit card and associates the card to a specific account holder.

Returns:

  • (String)


2310
2311
2312
2313
2314
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2310

class TranslationPinDataIsoFormat034 < Struct.new(
  :primary_account_number)
  SENSITIVE = [:primary_account_number]
  include Aws::Structure
end