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

    Interface FormWorkflowNodeRequest

    Workflow node request model with linked list connections

    interface FormWorkflowNodeRequest {
        conditionRule?: FormWorkflowConditionRule;
        id: string;
        label: string;
        next?: string;
        nextFalse?: string;
        nextTrue?: string;
    }
    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)