/** * 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. */ /** * Delete Notification * @export * @interface NotificationDelete */ export interface NotificationDelete { /** * Displays if notification was successfully deleted * @type {boolean} * @memberof NotificationDelete */ success?: boolean; } /** * Check if a given object implements the NotificationDelete interface. */ export declare function instanceOfNotificationDelete(value: object): boolean; export declare function NotificationDeleteFromJSON(json: any): NotificationDelete; export declare function NotificationDeleteFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationDelete; export declare function NotificationDeleteToJSON(value?: NotificationDelete | null): any;