Represents the request for acquiring an FxRate.

interface FxRateRequest {
    sourceCurrency: string;
    targetCurrency: string;
}

Properties

sourceCurrency: string

The currency, which the customer wants to exchange. Currency alphabetic code as specified by ISO 4217.

Example

"EUR"
targetCurrency: string

The currency, which the customer wants to receive. Currency alphabetic code as specified by ISO 4217.

Example

"EUR"