Item in the container.

ContainerItem

interface ContainerItem {
    quantity: number;
    title: string;
    unitPrice: Currency;
    unitWeight: Weight;
}

Properties

quantity: number

The quantity of the items of this type in the container.

ContainerItem

title: string

A descriptive title of the item.

ContainerItem

unitPrice: Currency

ContainerItem

unitWeight: Weight

ContainerItem