Technical Elements Documentation
    Preparing search index...

    Interface representing a path in an event tree. Paths connect branch points to other branches or end states.

    HLR-ES-A, ES-A6, ES-A10

    interface EventTreePath {
        description?: string;
        state: "SUCCESS" | "FAILURE";
        target: string;
        targetType: "BRANCH" | "SEQUENCE" | "END_STATE";
    }
    Index

    Properties

    description?: string

    Optional description of this path

    state: "SUCCESS" | "FAILURE"

    State of the path (SUCCESS/FAILURE)

    target: string

    Target of the path (could be another branch, sequence, or end state)

    targetType: "BRANCH" | "SEQUENCE" | "END_STATE"

    Type of target (BRANCH, SEQUENCE, END_STATE)