Represents the FX exchange rate between source and target currency.

interface FxRate {
    creationTime: string;
    expirationTime: string;
    fxRate: number;
    id: string;
    sender?: string;
    sourceCurrency: string;
    targetCurrency: string;
}

Properties

creationTime: string

The time of the FxRate creation. Format should be ISO 8601 in UTC.

Example

"2024-05-08T14:43:33Z"
expirationTime: string

The time, at which the FxRate expires. Format should be ISO 8601 in UTC.

Example

"2024-05-08T14:43:33Z"
fxRate: number

The rate, at which the source and target currencies are exchanged.

id: string

The FxRate id.

sender?: string

The Id of the request's sender.

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"