interface CartItemParam {
    productId: string;
    quantity: number;
}

Hierarchy (View Summary)

Properties

Properties

productId: string

The unique identifier of the product.

quantity: number

The quantity of the product in the cart.