A workflow transition condition.

interface CreateWorkflowCondition {
    conditions?: CreateWorkflowCondition[];
    configuration?: {
        [key: string]: unknown;
    };
    operator?: "AND" | "OR";
    type?: string;
}

Properties

The list of workflow conditions.

configuration?: {
    [key: string]: unknown;
}

EXPERIMENTAL. The configuration of the transition rule.

Type declaration

  • [key: string]: unknown

    EXPERIMENTAL. The configuration of the transition rule.

operator?: "AND" | "OR"

The compound condition operator.

type?: string

The type of the transition rule.