interface LocationTree {
    children: Location[];
    code: string;
    id: string;
    level: number;
    locationPath: string[];
    name: string;
    parentId: string;
    status: "ACTIVE" | "INACTIVE";
    type: string;
}

Hierarchy (view full)

Properties

children: Location[]
code: string
id: string
level: number
locationPath: string[]
name: string
parentId: string
status: "ACTIVE" | "INACTIVE"
type: string

Generated using TypeDoc