@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
35 lines (34 loc) • 1 kB
TypeScript
import { EventUrl } from "./eventUrl";
import { Key } from "./key";
import { Notification } from "./notification";
import { NotificationUrl } from "./notificationUrl";
export declare class Nexo {
"displayUrls"?: NotificationUrl | null;
"encryptionKey"?: Key | null;
"eventUrls"?: EventUrl | null;
/**
* One or more URLs to send event messages to when using Terminal API.
*
* @deprecated since Management API v1
* Use `eventUrls` instead.
*/
"nexoEventUrls"?: Array<string>;
"notification"?: Notification | 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();
}