@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
48 lines (47 loc) • 1.56 kB
TypeScript
import { DisplayOutput } from "./displayOutput";
import { EventToNotify } from "./eventToNotify";
/**
* Content of the EventNotification message. It conveys Information related to the event, and possible action (maintenance, message to display).
*/
export declare class EventNotification {
/**
* Date and time of a transaction for the Sale System, the POI System or the Acquirer.
*/
"TimeStamp": Date;
"EventToNotify": EventToNotify;
/**
* Information about the event the POI notifies to the Sale System. If present, the Sale logs it for further examination.
*/
"EventDetails"?: string;
/**
* Message request rejected by the receiver. Mandatory if EventToNotify is Reject, absent in other cases.
*/
"RejectedMessage"?: string;
/**
* Indicates if the occurred event requires maintenance call or action.
*/
"MaintenanceRequiredFlag"?: boolean;
/**
* Information to display and the way to process the display. To display an event message.
*/
"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();
}
export declare namespace EventNotification {
}