/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ScheduleRequest */ export interface ScheduleRequest { /** * * @type {string} * @memberof ScheduleRequest */ relObjId?: string | null; /** * When to schedule tasks * @type {string} * @memberof ScheduleRequest */ crontab: string; /** * Pause this schedule * @type {boolean} * @memberof ScheduleRequest */ paused?: boolean; } /** * Check if a given object implements the ScheduleRequest interface. */ export declare function instanceOfScheduleRequest(value: object): value is ScheduleRequest; export declare function ScheduleRequestFromJSON(json: any): ScheduleRequest; export declare function ScheduleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleRequest; export declare function ScheduleRequestToJSON(json: any): ScheduleRequest; export declare function ScheduleRequestToJSONTyped(value?: ScheduleRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ScheduleRequest.d.ts.map