interface Color {
    id: number;
    name: string;
    hex_code: string;
    is_active: boolean;
    secondary_color?:
        | null
        | { id: number; name: string; hex_code: string; is_active: boolean };
    primary_slot_label?: string;
    secondary_slot_label?: string;
}

Properties

id: number
name: string
hex_code: string
is_active: boolean
secondary_color?:
    | null
    | { id: number; name: string; hex_code: string; is_active: boolean }
primary_slot_label?: string
secondary_slot_label?: string