The monetary value in the currency indicated, in ISO 4217 standard format.

Currency

interface Currency {
    unit: string;
    value: number;
}

Properties

Properties

unit: string

The ISO 4217 format 3-character currency code.

Currency

value: number

The monetary value.

Currency