/** * Finix API */ /** * Encrypted card data used to process the transaction. */ export declare class CardPresentDetailsEmvData { /** * ID of the EMV application processing the transaction. */ 'applicationIdentifier'?: string; /** * EMV card label. */ 'applicationLabel'?: string; /** * Alternate EMV application name (if provided). */ 'applicationPreferredName'?: string | null; /** * Transaction number for the EMV application. */ 'applicationTransactionCounter'?: string; /** * Encrypted card infromation used to process the transaction. */ 'cryptogram'?: string; /** * The alphabet code table (according to ISO 8859) used by the EMV application (if provided). */ 'issuerCodeTableIndex'?: string | null; /** * Details if the cardholder\'s PIN number was verified. */ 'pinVerified'?: boolean; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }