@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
28 lines (27 loc) • 895 B
TypeScript
import { OutputResult } from "./outputResult";
/**
* It conveys the result of the display, parallel to the message request, except if response not required and absent. Content of the Display Response message.
*/
export declare class DisplayResponse {
/**
* Information related to the result the output (display, print, input). One per DisplayOutput item of the request, and in the same order.
*/
"OutputResult": Array<OutputResult>;
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();
}