The price attribute of the item.

Price

interface Price {
    Amount?: number;
    CurrencyCode?: string;
}

Properties

Amount?: number

The amount.

Price

CurrencyCode?: string

The currency code of the amount.

Price