The amount in converted currency during currency conversion.

interface FxAmount {
    amount: number;
    currency: string;
    rate: number;
}

Properties

Properties

amount: number

Converted amount (in minor units).

currency: string

The converted currency. Currency alphabetic code as specified by ISO 4217.

Example

"EUR"
rate: number

Currency conversion rate.