UNPKG

@adyen/api-library

Version:

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

47 lines (46 loc) 1.44 kB
export declare class Notification { /** * The type of event notification sent when you select the notification button. */ "category"?: Notification.CategoryEnum; /** * The text shown in the prompt which opens when you select the notification button. For example, the description of the input box for pay-at-table. */ "details"?: string; /** * Enables sending event notifications either by pressing the Confirm key on terminals with a keypad or by tapping the event notification button on the terminal screen. */ "enabled"?: boolean; /** * Shows or hides the event notification button on the screen of terminal models that have a keypad. */ "showButton"?: boolean; /** * The name of the notification button on the terminal screen. */ "title"?: 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(); } export declare namespace Notification { enum CategoryEnum { SaleWakeUp = "SaleWakeUp", KeyPressed = "KeyPressed", Empty = "" } }