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 13
13
public class Result {
14
14
15
15
private final String type ;
16
+ private final String label ;
16
17
private final String id ;
17
18
private final String similarityId ;
18
19
private final String status ;
@@ -32,6 +33,7 @@ public class Result {
32
33
private final VulnerabilityDetails vulnerabilityDetails ;
33
34
34
35
public Result (@ JsonProperty ("type" ) String type ,
36
+ @ JsonProperty ("label" ) String label ,
35
37
@ JsonProperty ("id" ) String id ,
36
38
@ JsonProperty ("similarityId" ) String similarityId ,
37
39
@ JsonProperty ("status" ) String status ,
@@ -50,6 +52,7 @@ public Result(@JsonProperty("type") String type,
50
52
@ JsonProperty ("comments" ) Comments comments ,
51
53
@ JsonProperty ("vulnerabilityDetails" ) VulnerabilityDetails vulnerabilityDetails ) {
52
54
this .type = type ;
55
+ this .label = label ;
53
56
this .id = id ;
54
57
this .similarityId = similarityId ;
55
58
this .status = status ;
You can’t perform that action at this time.
0 commit comments