File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/main/java/com/checkmarx/ast/results/result Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 1313public class Result {
1414
1515 private final String type ;
16+ private final String label ;
1617 private final String id ;
1718 private final String similarityId ;
1819 private final String status ;
@@ -32,6 +33,7 @@ public class Result {
3233 private final VulnerabilityDetails vulnerabilityDetails ;
3334
3435 public Result (@ JsonProperty ("type" ) String type ,
36+ @ JsonProperty ("label" ) String label ,
3537 @ JsonProperty ("id" ) String id ,
3638 @ JsonProperty ("similarityId" ) String similarityId ,
3739 @ JsonProperty ("status" ) String status ,
@@ -50,6 +52,7 @@ public Result(@JsonProperty("type") String type,
5052 @ JsonProperty ("comments" ) Comments comments ,
5153 @ JsonProperty ("vulnerabilityDetails" ) VulnerabilityDetails vulnerabilityDetails ) {
5254 this .type = type ;
55+ this .label = label ;
5356 this .id = id ;
5457 this .similarityId = similarityId ;
5558 this .status = status ;
You can’t perform that action at this time.
0 commit comments