The currency type and amount.

Money

interface Money {
    Amount?: string;
    CurrencyCode?: string;
}

Properties

Amount?: string

The currency amount.

Money

CurrencyCode?: string

Three-digit currency code in ISO 4217 format.

Money