/** * 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. */ /** * Result of a bulk notifications patch operation * @export * @interface NotificationBulkPatchResult */ export interface NotificationBulkPatchResult { /** * Number of notifications updated * @type {number} * @memberof NotificationBulkPatchResult */ updatedCount?: number; } /** * Check if a given object implements the NotificationBulkPatchResult interface. */ export declare function instanceOfNotificationBulkPatchResult(value: object): boolean; export declare function NotificationBulkPatchResultFromJSON(json: any): NotificationBulkPatchResult; export declare function NotificationBulkPatchResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationBulkPatchResult; export declare function NotificationBulkPatchResultToJSON(value?: NotificationBulkPatchResult | null): any;