A compound workflow transition rule condition. This object returns nodeType as compound.

interface WorkflowCompoundCondition {
    conditions: WorkflowCondition[];
    nodeType: string;
    operator: "AND" | "OR";
}

Properties

conditions: WorkflowCondition[]

The list of workflow conditions.

nodeType: string
operator: "AND" | "OR"

The compound condition operator.