aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/transmissionPowerDataType.ts
blob: 948baff1238f276e083b2f156b9ee56d608e7f8f (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 the TransmissionPower data fields of the performance history table.
 */
export type TransmissionPowerDataType = {
  "_id": string;
  "radio-signal-id": string;
  "scanner-id": string;
  "time-stamp": string;
  "suspect-interval-flag": boolean;
  "tx-level-min": string;
  "tx-level-avg": string;
  "tx-level-max": string;
};


export type TransmissionPowerResult = { "performance-data": TransmissionPowerDataType };

export type TransmissionPower = TransmissionPowerDataType & { _id: string };