@@ -26,6 +26,7 @@ public class Result {
2626 private final String publishedAt ;
2727 private final String recommendations ;
2828 private final String description ;
29+ private final String descriptionHTML ;
2930 private final Data data ;
3031 private final Comments comments ;
3132 private final VulnerabilityDetails vulnerabilityDetails ;
@@ -44,6 +45,7 @@ public Result(@JsonProperty("type") String type,
4445 @ JsonProperty ("publishedAt" ) String publishedAt ,
4546 @ JsonProperty ("recommendations" ) String recommendations ,
4647 @ JsonProperty ("description" ) String description ,
48+ @ JsonProperty ("descriptionHTML" ) String descriptionHTML ,
4749 @ JsonProperty ("data" ) Data data ,
4850 @ JsonProperty ("comments" ) Comments comments ,
4951 @ JsonProperty ("vulnerabilityDetails" ) VulnerabilityDetails vulnerabilityDetails ) {
@@ -61,6 +63,7 @@ public Result(@JsonProperty("type") String type,
6163 this .publishedAt = publishedAt ;
6264 this .recommendations = recommendations ;
6365 this .description = description ;
66+ this .descriptionHTML = descriptionHTML ;
6467 this .data = data ;
6568 this .comments = comments ;
6669 this .vulnerabilityDetails = vulnerabilityDetails ;
0 commit comments