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

Properties

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