A currency type and amount.

Currency

interface Currency {
    CurrencyAmount?: number;
    CurrencyCode?: string;
}

Properties

CurrencyAmount?: number

Fields with a schema type of BigDecimal are a signed decimal number (for example CurrencyAmount).

Currency

CurrencyCode?: string

The three-digit currency code in ISO 4217 format.

Currency