/** * 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. */ /** * Status of the notification * @export */ export declare const Status: { readonly Unread: "unread"; readonly Read: "read"; }; export type Status = typeof Status[keyof typeof Status]; export declare function StatusFromJSON(json: any): Status; export declare function StatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): Status; export declare function StatusToJSON(value?: Status | null): any;