aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts
blob: 51d43b455d9696e01249f948ccbe80a2c38a844d (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 Signal to interference data fields of the performance history table.
 */
export type SignalToInterferenceDataType = {
  "_id": string;
  "radio-signal-id": string;
  "scanner-id": string;
  "time-stamp": string;
  "suspect-interval-flag": boolean;
  "snir-min": string;
  "snir-avg": string;
  "snir-max": string;
};

export type SignalToInterferenceResult = { "performance-data": SignalToInterferenceDataType };

export type SignalToInterference = SignalToInterferenceDataType & { _id: string };