interface SerializedSetTurnAction {
    _objectType: "junctionConnection" | "nodeConnection" | "pathConnection";
    _subActions?: SerializedAction[];
    action: "ADD" | "UPDATE";
    actions?: SerializedAction;
    attributes: {
        id: {
            fromSegFwd: boolean;
            fromSegID: number;
            toSegFwd: boolean;
            toSegID: number;
        };
    };
    name?: string;
}

Hierarchy (View Summary)

Properties

_objectType: "junctionConnection" | "nodeConnection" | "pathConnection"
_subActions?: SerializedAction[]
action: "ADD" | "UPDATE"
attributes: {
    id: {
        fromSegFwd: boolean;
        fromSegID: number;
        toSegFwd: boolean;
        toSegID: number;
    };
}
name?: string