/** * 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'; /** * Bulk patch notifications for the authenticated user * @export * @interface NotificationBulkPatch */ export interface NotificationBulkPatch { /** * * @type {Status} * @memberof NotificationBulkPatch */ status: Status; } /** * Check if a given object implements the NotificationBulkPatch interface. */ export declare function instanceOfNotificationBulkPatch(value: object): boolean; export declare function NotificationBulkPatchFromJSON(json: any): NotificationBulkPatch; export declare function NotificationBulkPatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationBulkPatch; export declare function NotificationBulkPatchToJSON(value?: NotificationBulkPatch | null): any;