interface LocationTreeResponse {
    children: LocationResponse[];
    code: string;
    id: string;
    level: number;
    name: string;
    parent: string;
    status: "ACTIVE" | "INACTIVE";
    type: string;
}

Hierarchy (view full)

Properties

children: LocationResponse[]
code: string
id: string
level: number
name: string
parent: string
status: "ACTIVE" | "INACTIVE"
type: string

Generated using TypeDoc