@@ -26,6 +26,7 @@ public class Result {
26
26
private final String publishedAt ;
27
27
private final String recommendations ;
28
28
private final String description ;
29
+ private final String descriptionHTML ;
29
30
private final Data data ;
30
31
private final Comments comments ;
31
32
private final VulnerabilityDetails vulnerabilityDetails ;
@@ -44,6 +45,7 @@ public Result(@JsonProperty("type") String type,
44
45
@ JsonProperty ("publishedAt" ) String publishedAt ,
45
46
@ JsonProperty ("recommendations" ) String recommendations ,
46
47
@ JsonProperty ("description" ) String description ,
48
+ @ JsonProperty ("descriptionHTML" ) String descriptionHTML ,
47
49
@ JsonProperty ("data" ) Data data ,
48
50
@ JsonProperty ("comments" ) Comments comments ,
49
51
@ JsonProperty ("vulnerabilityDetails" ) VulnerabilityDetails vulnerabilityDetails ) {
@@ -61,6 +63,7 @@ public Result(@JsonProperty("type") String type,
61
63
this .publishedAt = publishedAt ;
62
64
this .recommendations = recommendations ;
63
65
this .description = description ;
66
+ this .descriptionHTML = descriptionHTML ;
64
67
this .data = data ;
65
68
this .comments = comments ;
66
69
this .vulnerabilityDetails = vulnerabilityDetails ;
0 commit comments