diff --git a/proto/forecaster.proto b/proto/forecaster.proto index 739add18d0ded8ea68a6be2e98c585fb718b10ab..576afb101ea4c8d733f3adf37fdf061e44b390eb 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; }