Norway Open Data SDK
    Preparing search index...

    Type Alias CurrencyRate

    A daily exchange-rate observation.

    type CurrencyRate = {
        baseCurrency: string;
        date: string;
        quoteCurrency: string;
        seriesId?: string;
        sourceSeriesIds?: string[];
        unit?: number;
        value: number;
    }
    Index
    baseCurrency: string

    Amount currency. unit of this currency equals value quote currency.

    date: string
    quoteCurrency: string
    seriesId?: string

    Official SDMX series for direct NOK quotations.

    sourceSeriesIds?: string[]

    Official SDMX series used when the value is inverted or cross-calculated.

    unit?: number

    Number of base-currency units represented by value.

    value: number