diff options
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-issues.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index aa88ec34083..d545fe7e75d 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -29,9 +29,9 @@ option optimize_for = SPEED; // Response of GET api/issues/search message SearchWsResponse { reserved 5; - reserved 1; - reserved 2; - reserved 3; + optional int64 total = 1 [deprecated=true]; + optional int64 p = 2 [deprecated=true]; + optional int32 ps = 3 [deprecated=true]; optional sonarqube.ws.commons.Paging paging = 4; // Total amount of effort, only when the facet "total" is enabled |