aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/receiveLevelDataType.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/src/models/receiveLevelDataType.ts')
-rw-r--r--sdnr/wt/odlux/apps/performanceHistoryApp/src/models/receiveLevelDataType.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/receiveLevelDataType.ts b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/receiveLevelDataType.ts
new file mode 100644
index 000000000..9f51c8fee
--- /dev/null
+++ b/sdnr/wt/odlux/apps/performanceHistoryApp/src/models/receiveLevelDataType.ts
@@ -0,0 +1,20 @@
+export { HitEntry, Result } from '../../../../framework/src/models';
+
+/**
+ * Represents Receive level data fields of the performance history table.
+ */
+export type ReceiveLevelDataType = {
+ "_id": string;
+ "radio-signal-id": string;
+ "scanner-id": string;
+ "time-stamp": string;
+ "suspect-interval-flag": boolean;
+ "rx-level-min": string;
+ "rx-level-avg": string;
+ "rx-level-max": string;
+};
+
+
+export type ReceiveLevelResult = { "performance-data": ReceiveLevelDataType };
+
+export type ReceiveLevel = ReceiveLevelDataType & { _id: string }; \ No newline at end of file