SDNR align ODLUX
[ccsdk/features.git] / sdnr / wt / odlux / apps / performanceHistoryApp / src / models / availableLtps.ts
1   export type LtpIds = {
2     key: string
3   }
4
5   export type Bucket<T>={ 
6     buckets: T[]
7   }
8
9 /**
10  * Represents distinct available ltps using elasticsearch aggregations structure.
11  */
12   export type DistinctLtp = {
13     "uuid-interface": Bucket<LtpIds>
14   }