/** * Notifications API * An API to create and read notifications * * The version of the OpenAPI document: 1.0.0 * Contact: DevTeamProduct@digitalrealty.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Status } from './Status.js'; /** * Patch Notification * @export * @interface NotificationPatch */ export interface NotificationPatch { /** * * @type {Status} * @memberof NotificationPatch */ status: Status; } /** * Check if a given object implements the NotificationPatch interface. */ export declare function instanceOfNotificationPatch(value: object): boolean; export declare function NotificationPatchFromJSON(json: any): NotificationPatch; export declare function NotificationPatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationPatch; export declare function NotificationPatchToJSON(value?: NotificationPatch | null): any;