/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const NotificationType: { readonly REVOCATION: "REVOCATION"; readonly FIRST_RENEWAL_REMINDER: "FIRST_RENEWAL_REMINDER"; readonly SECOND_RENEWAL_REMINDER: "SECOND_RENEWAL_REMINDER"; }; export type NotificationType = typeof NotificationType[keyof typeof NotificationType]; export declare function instanceOfNotificationType(value: any): boolean; export declare function NotificationTypeFromJSON(json: any): NotificationType; export declare function NotificationTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationType; export declare function NotificationTypeToJSON(value?: NotificationType | null): any; export declare function NotificationTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): NotificationType;