Freeze Design Frontend - TypeScript API
    Preparing search index...

    Interface ProductVariant

    interface ProductVariant {
        id: number;
        product: number;
        color: Color;
        size: Size;
        sku: string;
        stock_quantity: number;
        low_stock_threshold: number;
        price_adjustment: string;
        price: string;
        is_active: boolean;
        image: string | null;
        image_front: string | null;
        image_back: string | null;
        image_left: string | null;
        image_right: string | null;
        color_image_front: string | null;
    }
    Index

    Properties

    id: number
    product: number
    color: Color
    size: Size
    sku: string
    stock_quantity: number
    low_stock_threshold: number
    price_adjustment: string
    price: string
    is_active: boolean
    image: string | null
    image_front: string | null
    image_back: string | null
    image_left: string | null
    image_right: string | null
    color_image_front: string | null