UNPKG

@adyen/api-library

Version:

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

44 lines (43 loc) 1.68 kB
import { MenuEntryTag } from "./menuEntryTag"; import { OutputFormat } from "./outputFormat"; import { OutputText } from "./outputText"; import { PredefinedContent } from "./predefinedContent"; /** * An entry of the menu to present to the Cashier. It conveys message text and parameters of the menu entry. This output data could be only provided for an input command, in order to choose an entry of the menu. */ export declare class MenuEntry { "MenuEntryTag"?: MenuEntryTag; /** * Selection of a menu entry to be displayed. In Input request message, it allows selection of one or several menu entries before any user action. */ "DefaultSelectedFlag"?: boolean; "OutputFormat": OutputFormat; "PredefinedContent"?: PredefinedContent | null; /** * Content of text message to display or print. It conveys Information related to the content of the text message and its format. All the data elements related to the format of the text to display or print are parameters valid for the whole Text content. */ "OutputText"?: Array<OutputText>; /** * XHTML document body containing the message to display or print. */ "OutputXHTML"?: 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 MenuEntry { }