Interface Category

interface Category {
    categoryId: string;
    fullPath: string;
    name: string;
    parentCategoryId?: null | string;
    restricted?: boolean;
}

Properties

categoryId: string
fullPath: string
name: string
parentCategoryId?: null | string
restricted?: boolean