Interface MarketMarketCategoryTree

interface MarketMarketCategoryTree {
    children: MarketMarketCategoryTree[];
    icon_name: string;
    id: number;
    name: string;
    url: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

icon_name: string

Icon name

id: number

Category ID

name: string

Category name

url: string

SEO-friendly URL to page with category's items

Generated using TypeDoc