interface TwoColorCombination {
    id: number;
    primary_color: Color;
    secondary_color: Color;
    image_front: null | string;
    image_back: null | string;
    image_left: null | string;
    image_right: null | string;
}

Properties

id: number
primary_color: Color
secondary_color: Color
image_front: null | string
image_back: null | string
image_left: null | string
image_right: null | string