summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/performanceDataType.ts
blob: 6972998b6511d9d81482bcd53cf5d28897075228 (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 performance data fields of the performance history table.
 */
export type PerformanceDataType = {
  "_id": string;
  "radio-signal-id": string;
  "scanner-id": string;
  "time-stamp": string;
  "suspect-interval-flag": boolean;
  "es": string;
  "ses": string;
  "unavailability": string;
};


export type PerformanceResult = { "performance-data": PerformanceDataType };

export type Performance = PerformanceDataType & { _id: string };