@@ -25,6 +25,7 @@ public class Result {
25
25
private final String firstScanId ;
26
26
private final String publishedAt ;
27
27
private final String recommendations ;
28
+ private final String description ;
28
29
private final Data data ;
29
30
private final Comments comments ;
30
31
private final VulnerabilityDetails vulnerabilityDetails ;
@@ -42,6 +43,7 @@ public Result(@JsonProperty("type") String type,
42
43
@ JsonProperty ("firstScanId" ) String firstScanId ,
43
44
@ JsonProperty ("publishedAt" ) String publishedAt ,
44
45
@ JsonProperty ("recommendations" ) String recommendations ,
46
+ @ JsonProperty ("description" ) String description ,
45
47
@ JsonProperty ("data" ) Data data ,
46
48
@ JsonProperty ("comments" ) Comments comments ,
47
49
@ JsonProperty ("vulnerabilityDetails" ) VulnerabilityDetails vulnerabilityDetails ) {
@@ -58,6 +60,7 @@ public Result(@JsonProperty("type") String type,
58
60
this .firstScanId = firstScanId ;
59
61
this .publishedAt = publishedAt ;
60
62
this .recommendations = recommendations ;
63
+ this .description = description ;
61
64
this .data = data ;
62
65
this .comments = comments ;
63
66
this .vulnerabilityDetails = vulnerabilityDetails ;
0 commit comments