interface AdminColor {
    id: number;
    name: string;
    hex_code: string;
    is_active: boolean;
    categories: number[];
    category_names: string[];
    secondary_color?:
        | null
        | { id: number; name: string; hex_code: string; is_active: boolean };
    secondary_color_id?: null | number;
    primary_slot_label?: string;
    secondary_slot_label?: string;
}

Properties

id: number
name: string
hex_code: string
is_active: boolean
categories: number[]
category_names: string[]
secondary_color?:
    | null
    | { id: number; name: string; hex_code: string; is_active: boolean }
secondary_color_id?: null | number
primary_slot_label?: string
secondary_slot_label?: string