UNPKG

@adyen/api-library

Version:

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

33 lines (32 loc) 983 B
import { MenuEntry } from "./menuEntry"; import { MessageReference } from "./messageReference"; import { OutputContent } from "./outputContent"; /** * Definition: Content of the Input Update message. : It conveys update of the display of an Input request in progress. */ export declare class InputUpdate { "MessageReference": MessageReference; "OutputContent": OutputContent; "MenuEntry"?: Array<MenuEntry>; "OutputSignature"?: string; "MinLength"?: number; "MaxLength"?: number; "MaxDecimalLength"?: number; 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(); }