diff --git a/src/main/java/com/checkmarx/ast/results/result/Data.java b/src/main/java/com/checkmarx/ast/results/result/Data.java index f643af71..a17275d6 100644 --- a/src/main/java/com/checkmarx/ast/results/result/Data.java +++ b/src/main/java/com/checkmarx/ast/results/result/Data.java @@ -21,6 +21,12 @@ public class Data { String resultHash; String languageName; String description; + String platform; + String issueType; + String expectedValue; + String value; + String fileName; + int line; List nodes; List packageData; @@ -30,6 +36,12 @@ public Data(@JsonProperty("queryId") String queryId, @JsonProperty("resultHash") String resultHash, @JsonProperty("languageName") String languageName, @JsonProperty("description") String description, + @JsonProperty("platform") String platform, + @JsonProperty("issueType") String issueType, + @JsonProperty("expectedValue") String expectedValue, + @JsonProperty("value") String value, + @JsonProperty("filename") String fileName, + @JsonProperty("line") int line, @JsonProperty("nodes") List nodes, @JsonProperty("packageData") List packageData) { this.queryId = queryId; @@ -38,6 +50,12 @@ public Data(@JsonProperty("queryId") String queryId, this.resultHash = resultHash; this.languageName = languageName; this.description = description; + this.platform = platform; + this.issueType = issueType; + this.expectedValue = expectedValue; + this.value = value; + this.fileName = fileName; + this.line = line; this.nodes = nodes; this.packageData = packageData; }