interface CategoryResponse {
    description: string;
    id: string;
    level: number;
    name: string;
    parent: string;
    status: "ACTIVE";
}

Properties

description: string

Human readable description of the product category

id: string

Category id

level: number

Hierarchical level of the category

name: string

name for the product category (this will be a 'key' for i18n in our case)

parent: string

Hierarchical parent of this category (empty for none)

status: "ACTIVE"

Status of the category (currently ACTIVE is the only supported one)

Generated using TypeDoc