summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts')
-rw-r--r--sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts
new file mode 100644
index 000000000..73934bd85
--- /dev/null
+++ b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/signalToInteferenceDataType.ts
@@ -0,0 +1,20 @@
+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 }; \ No newline at end of file