@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
9 lines (8 loc) • 355 B
TypeScript
import { Notification, NotificationItem, NotificationRequestItem } from "../typings/notification/models";
declare class NotificationRequest {
constructor(json: Notification);
get notificationItems(): NotificationRequestItem[] | undefined;
live: string;
notificationItemContainers: NotificationItem[];
}
export default NotificationRequest;