From f205c53a06b629573de2486a393b85a6415f6ebb Mon Sep 17 00:00:00 2001
From: Ricard Vilalta <ricard.vilalta@cttc.es>
Date: Thu, 14 Jul 2022 09:13:03 +0000
Subject: [PATCH] Update forecaster.proto

---
 proto/forecaster.proto | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/proto/forecaster.proto b/proto/forecaster.proto
index 739add18d..576afb101 100644
--- a/proto/forecaster.proto
+++ b/proto/forecaster.proto
@@ -24,14 +24,14 @@ service ForecasterService {
 }
 
 message SingleForecast {
-  context.Timestamp = 1;
+  context.Timestamp timestamp= 1;
   double value = 2;    
 }
 
 message Forecast {
     oneof uuid {
-      context.TopologyId = 1;
-      context.LinkId = 2;
+      context.TopologyId topologyId= 1;
+      context.LinkId linkId = 2;
     }
     repeated SingleForecast forecast = 3;
 }
-- 
GitLab