UNPKG

@adyen/api-library

Version:

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

40 lines (39 loc) 1.08 kB
export declare class TerminalAssignmentNotificationRequest { /** * The unique identifier of the merchant/company account to which the terminal is assigned. */ "assignedToAccount": string; /** * The unique identifier of the store to which the terminal is assigned. */ "assignedToStore"?: 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(); }