/** * 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 SkipReason: { readonly None: "None"; readonly ConditionDoesNotMatch: "ConditionDoesNotMatch"; readonly ConditionPrecheckDoesNotMatch: "ConditionPrecheckDoesNotMatch"; readonly Disabled: "Disabled"; readonly Failed: "Failed"; readonly FromRule: "FromRule"; readonly NoAction: "NoAction"; readonly NoTrigger: "NoTrigger"; readonly TooOld: "TooOld"; readonly WrongEvent: "WrongEvent"; readonly WrongEventForTrigger: "WrongEventForTrigger"; }; export type SkipReason = typeof SkipReason[keyof typeof SkipReason]; export declare function instanceOfSkipReason(value: any): boolean; export declare function SkipReasonFromJSON(json: any): SkipReason; export declare function SkipReasonFromJSONTyped(json: any, _ignoreDiscriminator: boolean): SkipReason; export declare function SkipReasonToJSON(value?: SkipReason | null): any;