The wait node.

interface WaitNode {
    defaultConnector?: string;
    defaultConnectorLabel?: string;
    defaultConnectorPoint?: string;
    description?: string;
    faultConnector?: string;
    faultConnectorPoint?: string;
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
    waitEvents: WaitEvent[];
}

Hierarchy (view full)

Properties

defaultConnector?: string

The default branch to go.

defaultConnectorLabel?: string
defaultConnectorPoint?: string
description?: string

The description of the element.

faultConnector?: string
faultConnectorPoint?: string
label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.

waitEvents: WaitEvent[]