interface AdminTwoColorCombination {
    id: number;
    product: number;
    primary_color: { id: number; name: string; hex_code: string };
    secondary_color: { id: number; name: string; hex_code: string };
    image_front: null | string;
    image_back: null | string;
    image_left: null | string;
    image_right: null | string;
    is_active: boolean;
    sort_order: number;
    created_at: string;
    updated_at: string;
}

Properties

id: number
product: number
primary_color: { id: number; name: string; hex_code: string }
secondary_color: { id: number; name: string; hex_code: string }
image_front: null | string
image_back: null | string
image_left: null | string
image_right: null | string
is_active: boolean
sort_order: number
created_at: string
updated_at: string