Currency type and amount.

Export

CurrencyAmount

interface CurrencyAmount {
    Amount: number;
    CurrencyCode: string;
}

Properties

Properties

Amount: number

The currency amount.

Memberof

CurrencyAmount

CurrencyCode: string

Three-digit currency code in ISO 4217 format.

Memberof

CurrencyAmount