interface CustomLineItem {
    id: string;
    money: Money;
    name: LocalizedString;
    quantity: number;
    slug: string;
    taxedPrice: TaxedItemPrice;
    totalPrice: Money;
}

Properties

id: string

The unique ID of this CustomLineItem.

money: Money
quantity: number

The amount of a CustomLineItem in the cart. Must be a positive integer.

slug: string

A unique String in the cart to identify this CustomLineItem.

taxedPrice: TaxedItemPrice
totalPrice: Money