Interface DecisionNode

The decision element.

interface DecisionNode {
    decisionRules?: DecisionRule[];
    defaultConnector?: string;
    defaultConnectorPoint?: string;
    description?: string;
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
}

Hierarchy (view full)

Properties

decisionRules?: DecisionRule[]

The conditional connectors.

defaultConnector?: string

The default connector if no decision rules are matched.

defaultConnectorPoint?: string
description?: string

The description of the element.

label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.