The total value of all items in the container.

Currency

interface Currency {
    unit: string;
    value: number;
}

Properties

Properties

unit: string

A 3-character currency code.

Currency

value: number

The amount of currency.

Currency