@@ -25,6 +25,7 @@ public class Result {
2525 private final String firstScanId ;
2626 private final String publishedAt ;
2727 private final String recommendations ;
28+ private final String description ;
2829 private final Data data ;
2930 private final Comments comments ;
3031 private final VulnerabilityDetails vulnerabilityDetails ;
@@ -42,6 +43,7 @@ public Result(@JsonProperty("type") String type,
4243 @ JsonProperty ("firstScanId" ) String firstScanId ,
4344 @ JsonProperty ("publishedAt" ) String publishedAt ,
4445 @ JsonProperty ("recommendations" ) String recommendations ,
46+ @ JsonProperty ("description" ) String description ,
4547 @ JsonProperty ("data" ) Data data ,
4648 @ JsonProperty ("comments" ) Comments comments ,
4749 @ JsonProperty ("vulnerabilityDetails" ) VulnerabilityDetails vulnerabilityDetails ) {
@@ -58,6 +60,7 @@ public Result(@JsonProperty("type") String type,
5860 this .firstScanId = firstScanId ;
5961 this .publishedAt = publishedAt ;
6062 this .recommendations = recommendations ;
63+ this .description = description ;
6164 this .data = data ;
6265 this .comments = comments ;
6366 this .vulnerabilityDetails = vulnerabilityDetails ;
0 commit comments