Add table with automatic neighbor relation data
[portal/ric-dashboard.git] / webapp-frontend / src / app / interfaces / anr-xapp.types.ts
index 0e07ceb..078753f 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
 // Models of data used by the ANR xApp
 
+export interface ANRGgNodeBTable {
+  gNodeBIds: Array<string>;
+}
+
+export interface ANRNeighborCellRelationTable {
+  ncrtRelations: Array<ANRNeighborCellRelation>;
+}
+
 export interface ANRNeighborCellRelation {
-  cellIdentifierNrcgi: string;
+  servingCellNrcgi: string;
   neighborCellNrpci: string;
   neighborCellNrcgi: string;
   flagNoHo: boolean;
@@ -29,15 +37,8 @@ export interface ANRNeighborCellRelation {
   flagNoRemove: boolean;
 }
 
-export interface ANRNeighborCellRelationDel {
-  idType: string;
-  neighborCellNrpci: string;
-  neighborCellNrcgi: string;
-}
-
 export interface ANRNeighborCellRelationMod {
-  neighbourCellIdentifierType: string;
-  action: string;
+  servingCellNrcgi: string;
   neighborCellNrpci: string;
   neighborCellNrcgi: string;
   flagNoHo: boolean;