/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 ReminderType: { readonly Notification: "NOTIFICATION"; readonly Email: "EMAIL"; }; export type ReminderType = typeof ReminderType[keyof typeof ReminderType]; export declare function instanceOfReminderType(value: any): boolean; export declare function ReminderTypeFromJSON(json: any): ReminderType; export declare function ReminderTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReminderType; export declare function ReminderTypeToJSON(value?: ReminderType | null): any; export declare function ReminderTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): ReminderType;