A currency type and amount.

Currency

interface Currency {
    currencyAmount?: number;
    currencyCode?: string;
}

Properties

currencyAmount?: number

A signed decimal number.

Currency

currencyCode?: string

The three-digit currency code in ISO 4217 format.

Currency