Interface CartItemWithMetadata

interface CartItemWithMetadata {
    name: string;
    price: number;
    productId: string;
    quantity: number;
}

Hierarchy (View Summary)

Properties

name: string

The name of the cart item.

price: number

The price of the cart item.

productId: string

The unique identifier of the product.

quantity: number

The quantity of the product in the cart.