/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 JobStatus: { readonly Created: "Created"; readonly Started: "Started"; readonly Completed: "Completed"; readonly Cancelled: "Cancelled"; readonly Failed: "Failed"; }; export type JobStatus = typeof JobStatus[keyof typeof JobStatus]; export declare function instanceOfJobStatus(value: any): boolean; export declare function JobStatusFromJSON(json: any): JobStatus; export declare function JobStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): JobStatus; export declare function JobStatusToJSON(value?: JobStatus | null): any;