/** * The Notification model module. * @module Ntnx/Notification * @version 4.3.1 * @class Notification * @extends ExternalizableAbstractModel */ export default class Notification extends ExternalizableAbstractModel { /** * @return {NotificationItem[]} */ getNotifications(): NotificationItem[]; /** * @param {NotificationItem[]} notifications */ setNotifications(notifications: NotificationItem[]): void; notifications: NotificationItem[]; /** * Returns The cluster UUID on which the resource is present or the operation is being performed. * @return {string} */ getClusterExtId(): string; /** * Sets The cluster UUID on which the resource is present or the operation is being performed. * @param {string} clusterExtId The cluster UUID on which the resource is present or the operation is being performed. */ setClusterExtId(clusterExtId: string): void; clusterExtId: string; #private; } import ExternalizableAbstractModel from "../../../common/v1/response/ExternalizableAbstractModel"; import NotificationItem from "./NotificationItem";