The type and amount of currency.

Currency

interface Currency {
    amount: number;
    code: string;
}

Properties

Properties

amount: number

Decimal value of the currency.

Currency

code: string

ISO 4217 standard of a currency code.

Currency