UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

31 lines (30 loc) 993 B
/** * Identification of a transaction for the Sale System or the POI System. */ export declare class TransactionIDType { /** * Unique identification of a transaction to identify the transaction on the Sale System (e.g. ticket number), or the POI System. */ "TransactionID": string; /** * Date and time of a transaction for the Sale System, the POI System or the Acquirer. Ensures the uniqueness of a transaction and indicates the time when the event occurs in the EventNotification message. */ "TimeStamp": Date; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }