UNPKG

@adyen/api-library

Version:

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

31 lines (30 loc) 901 B
import { Device } from "./device"; import { InfoQualify } from "./infoQualify"; import { Response } from "./response"; /** * In the message response, it contains the result of the output, if required in the message request. Information related to the result the output (display, print, input). */ export declare class OutputResult { "Device": Device; "InfoQualify": InfoQualify; "Response": Response; 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 OutputResult { }