/** * 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 RuleJobResult: { readonly Pending: "Pending"; readonly Success: "Success"; readonly Retry: "Retry"; readonly Failed: "Failed"; readonly Cancelled: "Cancelled"; }; export type RuleJobResult = typeof RuleJobResult[keyof typeof RuleJobResult]; export declare function instanceOfRuleJobResult(value: any): boolean; export declare function RuleJobResultFromJSON(json: any): RuleJobResult; export declare function RuleJobResultFromJSONTyped(json: any, _ignoreDiscriminator: boolean): RuleJobResult; export declare function RuleJobResultToJSON(value?: RuleJobResult | null): any;