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


export type CrossPolarDiscriminationResult = { "performance-data": CrossPolarDiscriminationDataType };

export type CrossPolarDiscrimination = CrossPolarDiscriminationDataType & { _id: string };