/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * - KIND_UNSPECIFIED: Workflow step kind not specified * - KIND_ENTRY: Entry steps are automatically triggered when a visitor reaches the workflow * - KIND_EXIT: Exit steps finalize the workflow (commonly a redirect) * - KIND_INTERACTION: Interaction steps require visitor input (forms, passwords, etc.) * - KIND_CONDITION: Condition steps evaluate logic and route to different next steps * @export */ export declare const WorkflowStepKind: { readonly KindUnspecified: "KIND_UNSPECIFIED"; readonly KindEntry: "KIND_ENTRY"; readonly KindExit: "KIND_EXIT"; readonly KindInteraction: "KIND_INTERACTION"; readonly KindCondition: "KIND_CONDITION"; }; export type WorkflowStepKind = typeof WorkflowStepKind[keyof typeof WorkflowStepKind]; export declare function instanceOfWorkflowStepKind(value: any): boolean; export declare function WorkflowStepKindFromJSON(json: any): WorkflowStepKind; export declare function WorkflowStepKindFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowStepKind; export declare function WorkflowStepKindToJSON(value?: WorkflowStepKind | null): any; export declare function WorkflowStepKindToJSONTyped(value: any, ignoreDiscriminator: boolean): WorkflowStepKind;