/** * 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 ReminderUnit: { readonly Minutes: "MINUTES"; readonly Hours: "HOURS"; readonly Days: "DAYS"; readonly Weeks: "WEEKS"; }; export type ReminderUnit = typeof ReminderUnit[keyof typeof ReminderUnit]; export declare function instanceOfReminderUnit(value: any): boolean; export declare function ReminderUnitFromJSON(json: any): ReminderUnit; export declare function ReminderUnitFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReminderUnit; export declare function ReminderUnitToJSON(value?: ReminderUnit | null): any; export declare function ReminderUnitToJSONTyped(value: any, ignoreDiscriminator: boolean): ReminderUnit;