Interface DecisionRule

The rule of the decision.

interface DecisionRule {
    connector?: string;
    connectorPoint?: string;
    criteria?: string;
    name: string;
}

Properties

connector?: string

The connector to next node.

connectorPoint?: string
criteria?: string

An expression evaluated to be boolean.

name: string