Interface RateInputTimeSeries

Export

RateInputTimeSeries

interface RateInputTimeSeries {
    endInclusive?: boolean;
    endTime: number;
    next?: boolean;
    outputUnit: string;
    previous?: boolean;
    ratingTime?: number;
    round?: boolean;
    startInclusive?: boolean;
    startTime: number;
    timeSeriesIds: string[];
    trim?: boolean;
    versionDate?: number;
}

Properties

endInclusive?: boolean

Specifies whether the time window ends on or before the specified time. Defaults to true;

Memberof

RateInputTimeSeries

endTime: number

The end of the time window to rate.Represents milliseconds since 1970-01-01 (Unix Epoch), always UTC.

Memberof

RateInputTimeSeries

next?: boolean

Specifies whether to retrieve the earliest value after the end of the time window. Defaults to false.

Memberof

RateInputTimeSeries

outputUnit: string

The units of the output values

Memberof

RateInputTimeSeries

previous?: boolean

Specifies whether to retrieve the latest value before the start of the time window. Defaults to false.

Memberof

RateInputTimeSeries

ratingTime?: number

A specific date/time to use as the "current time" of the rating. No ratings with a create date later than this will be used. Useful for performing historical ratings. If not specified or NULL, the current time is use.

Memberof

RateInputTimeSeries

round?: boolean

A flag specifying whether to round the rated values according to the rounding spec contained in the rating specification. Defaults to false.

Memberof

RateInputTimeSeries

startInclusive?: boolean

Specifies whether the time window starts on or after the specified time. Defaults to true.

Memberof

RateInputTimeSeries

startTime: number

The start of the time window to rate.Represents milliseconds since 1970-01-01 (Unix Epoch), always UTC.

Memberof

RateInputTimeSeries

timeSeriesIds: string[]

Memberof

RateInputTimeSeries

trim?: boolean

Specifies whether to trim missing values from the ends of the retrieved time series. Defaults to false.

Memberof

RateInputTimeSeries

versionDate?: number

Specifies the version date of the retrieve time series. Represents milliseconds since 1970-01-01 (Unix Epoch), always UTC.

Memberof

RateInputTimeSeries