interface CategoryTree {
    ancestors: string[];
    children: Category[];
    description: string;
    icon?: CategoryIcon;
    id: string;
    level: number;
    name: string;
    parentId: string;
    sequence: number;
    status: "ACTIVE" | "INACTIVE";
}

Hierarchy (view full)

Properties

ancestors: string[]
children: Category[]
description: string
id: string
level: number
name: string
parentId: string
sequence: number
status: "ACTIVE" | "INACTIVE"

Generated using TypeDoc