aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/temperatureDataType.ts
blob: e5be6e36cce47c605d62e54bddbc15edbe0710f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export { HitEntry, Result } from '../../../../framework/src/models';

/**
 * Represents Temperature data fields of the performance history table.
 */
export type TemperatureDataType = {
  "_id": string;
  "radio-signal-id": string;
  "scanner-id": string;
  "time-stamp": string;
  "suspect-interval-flag": boolean;
  "rf-temp-min": string;
  "rf-temp-avg": string;
  "rf-temp-max": string;
};


export type TemperatureResult = { "performance-data": TemperatureDataType };

export type Temperature = TemperatureDataType & { _id: string };