aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/transmissionPowerDataType.ts
blob: af6f9892dc0e26a23f49e0cbf9ebb3df0eb34a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 };