@paysafe/paysafe-wallet-saas-web
    Preparing search index...

    Interface FxRate

    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;
    }
    Index

    Properties

    creationTime: string

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

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

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

    "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.

    "EUR"
    
    targetCurrency: string

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

    "EUR"