Export

RateInputValues

interface RateInputValues {
    inputUnits: string[];
    outputUnit: string;
    ratingTime?: number;
    round?: boolean;
    valueTimes?: number[];
    values: number[][];
}

Properties

inputUnits: string[]

Memberof

RateInputValues

outputUnit: string

The units of the output values

Memberof

RateInputValues

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

RateInputValues

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

RateInputValues

valueTimes?: number[]

Memberof

RateInputValues

values: number[][]

Memberof

RateInputValues