File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
proto/frequenz/api/dispatch/v1 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ import "frequenz/api/common/v1/microgrid/components/components.proto";
5555// electrical engineering and systems.
5656service MicrogridDispatchService {
5757 // Returns a list of all dispatches
58- rpc ListMicrogridDispatches (DispatchListRequest ) returns (DispatchList );
58+ rpc ListMicrogridDispatches (ListMicrogridDispatchesRequest ) returns (ListMicrogridDispatchesResponse );
5959
6060 // Create a new dispatch
6161 rpc CreateMicrogridDispatch (DispatchCreateRequest ) returns (google .protobuf .Empty );
@@ -291,7 +291,7 @@ message RecurrenceRule {
291291}
292292
293293// Message for listing dispatches for a given microgrid, and an optional filter
294- message DispatchListRequest {
294+ message ListMicrogridDispatchesRequest {
295295 // The microgrid ID
296296 uint64 microgrid_id = 1 ;
297297
@@ -319,7 +319,7 @@ message DispatchFilter {
319319}
320320
321321// A list of dispatches
322- message DispatchList {
322+ message ListMicrogridDispatchesResponse {
323323 // The dispatches
324324 repeated DispatchDetail dispatches = 1 ;
325325}
You can’t perform that action at this time.
0 commit comments