interface AdminProductVariant {
    id: number;
    product: number;
    color: Color;
    size: Size;
    color_combination: null | AdminTwoColorCombination;
    sku: string;
    stock_quantity: number;
    low_stock_threshold: number;
    price_adjustment: string;
    price: string;
    is_active: boolean;
}

Properties

id: number
product: number
color: Color
size: Size
color_combination: null | AdminTwoColorCombination
sku: string
stock_quantity: number
low_stock_threshold: number
price_adjustment: string
price: string
is_active: boolean