@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
28 lines (27 loc) • 1 kB
TypeScript
import { DisplayOutput } from "./displayOutput";
/**
* It conveys the data to display and the way to process the display. It contains the complete content to display. It might contain an operation (the DisplayOutput element) per Display Device type. Content of the Display Request message.
*/
export declare class DisplayRequest {
/**
* Information to display and the way to process the display. Complete display content for output devices. At most one DisplayOutput per Device/ InfoQualify pair.
*/
"DisplayOutput": Array<DisplayOutput>;
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();
}