UNPKG

@adyen/api-library

Version:

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

44 lines (43 loc) 1.25 kB
export declare class TerminalAssignmentNotificationRequest { /** * The unique identifier of the merchant/company account to which the terminal is assigned. */ "assignedToAccount": string; /** * The store that the terminal is assigned to, identified by the store reference (also known as store code). */ "assignedToStore"?: string; /** * The unique identifier of the store to which the terminal is assigned. */ "assignedToStoreId"?: string; /** * The date and time when an event has been completed. */ "eventDate": string; /** * The PSP reference of the request from which the notification originates. */ "pspReference": string; /** * The unique identifier of the terminal. */ "uniqueTerminalId": string; 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(); }