diff options
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index d5ebfd2fe75..32966a90520 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -260,8 +260,8 @@ message IssueLite { optional int64 creationDate = 2; optional bool resolved = 3; optional string ruleKey = 4; - optional string userSeverity = 5; - optional string type = 6; + optional sonarqube.ws.commons.Severity userSeverity = 5; + optional sonarqube.ws.commons.RuleType type = 6; optional Location mainLocation = 7; optional bool closed = 8; } @@ -277,8 +277,8 @@ message TaintVulnerabilityLite { optional int64 creationDate = 2; optional bool resolved = 3; optional string ruleKey = 4; - optional string severity = 5; - optional string type = 6; + optional sonarqube.ws.commons.Severity severity = 5; + optional sonarqube.ws.commons.RuleType type = 6; optional Location mainLocation = 7; optional bool closed = 8; repeated Flow flows = 9; |