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

    Interface UnitParentChild

    Model representing a parent-child relationship between units, allowing for hierarchical structures

    interface UnitParentChild {
        childId: string;
        orgId: string;
        parentId?: string;
    }
    Index

    Properties

    childId: string

    The unique identifier of the child unit

    orgId: string

    The unique identifier of the units' organization

    parentId?: string

    The unique identifier of the parent unit, which can be left null if the child is root unit of the organization.