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

    Interface CartItem

    interface CartItem {
        id: number;
        product: Product;
        variant: ProductVariant;
        design: CustomDesign | null;
        quantity: number;
        custom_text: string;
        custom_number: string;
        line_total: string;
        design_cost_breakdown?: DesignCostBreakdown | null;
        added_at?: string;
        updated_at?: string;
    }
    Index

    Properties

    id: number
    product: Product
    design: CustomDesign | null
    quantity: number
    custom_text: string
    custom_number: string
    line_total: string
    design_cost_breakdown?: DesignCostBreakdown | null
    added_at?: string
    updated_at?: string