Freeze Design Frontend - TypeScript API
    Preparing search index...

    Interface Category

    interface Category {
        id: number;
        name: string;
        slug: string;
        description: string;
        image: string | null;
        parent: number | null;
        is_active: boolean;
        sort_order: number;
        product_count: number;
        level: number;
        full_path: string;
        children: Category[];
        created_at: string;
        updated_at: string;
    }
    Index

    Properties

    id: number
    name: string
    slug: string
    description: string
    image: string | null
    parent: number | null
    is_active: boolean
    sort_order: number
    product_count: number
    level: number
    full_path: string
    children: Category[]
    created_at: string
    updated_at: string