@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface FormWorkflowNodeResponse

    Workflow node response model with linked list connections

    interface FormWorkflowNodeResponse {
        conditionRule: FormWorkflowConditionRule;
        id: string;
        label: string;
        next: string;
        nextFalse: string;
        nextTrue: string;
        type: FormWorkflowNodeType;
    }
    Index

    Properties

    The condition rule for the node, only for condition nodes

    id: string

    Unique identifier for the node.

    label: string

    The label for the node

    next: string

    Next node id for sequential flow (for start and section nodes)

    nextFalse: string

    Next node id when condition is false (for condition nodes)

    nextTrue: string

    Next node id when condition is true (for condition nodes)

    Type of the node