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

    Interface ShoppingCart

    interface ShoppingCart {
        id: number;
        user?: number | null;
        session_key?: string | null;
        items: CartItem[];
        total_items: number;
        subtotal: string;
        created_at?: string;
        updated_at?: string;
    }
    Index

    Properties

    id: number
    user?: number | null
    session_key?: string | null
    items: CartItem[]
    total_items: number
    subtotal: string
    created_at?: string
    updated_at?: string