Interface AssignmentNode

The assignment element.

interface AssignmentNode {
    assignmentItems: AssignmentItem[];
    connector?: string;
    connectorPoint?: string;
    description?: string;
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
}

Hierarchy (view full)

Properties

assignmentItems: AssignmentItem[]

The assignment items.

connector?: string

The connector to next node.

connectorPoint?: 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.