Extend Mock E2Mgr configuration to save state
[portal/ric-dashboard.git] / webapp-frontend / src / app / interfaces / e2-mgr.types.ts
index bc29cfe..4f2cb4a 100644 (file)
@@ -23,7 +23,7 @@
 export interface E2SetupRequest {
   ranName: string;
   ranIp: string;
-  ranPort: number;
+  ranPort: string;
 }
 
 export interface E2ErrorResponse {
@@ -57,3 +57,10 @@ export interface E2RanDetails {
   nodebIdentity: E2NodebIdentity;
   nodebStatus: E2GetNodebResponse;
 }
+
+export interface RanDialogFormData {
+  ranIp: string;
+  ranName: string;
+  ranPort: string;
+  ranType: string;
+}