UNPKG

@adyen/api-library

Version:

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

31 lines (30 loc) 1.01 kB
import { DisplayOutput } from "./displayOutput"; import { MessageReference } from "./messageReference"; /** * Body of the Abort Request message. It conveys Information requested for identification of the message request carrying the transaction to abort. A message to display on the CustomerError Device could be sent by the Sale System (DisplayOutput). */ export declare class AbortRequest { "MessageReference": MessageReference; /** * Reason of aborting a transaction. */ "AbortReason": string; "DisplayOutput"?: DisplayOutput | null; 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(); }