@@ -21,6 +21,12 @@ public class Data {
21
21
String resultHash ;
22
22
String languageName ;
23
23
String description ;
24
+ String platform ;
25
+ String issueType ;
26
+ String expectedValue ;
27
+ String value ;
28
+ String fileName ;
29
+ int line ;
24
30
List <Node > nodes ;
25
31
List <PackageData > packageData ;
26
32
@@ -30,6 +36,12 @@ public Data(@JsonProperty("queryId") String queryId,
30
36
@ JsonProperty ("resultHash" ) String resultHash ,
31
37
@ JsonProperty ("languageName" ) String languageName ,
32
38
@ JsonProperty ("description" ) String description ,
39
+ @ JsonProperty ("platform" ) String platform ,
40
+ @ JsonProperty ("issueType" ) String issueType ,
41
+ @ JsonProperty ("expectedValue" ) String expectedValue ,
42
+ @ JsonProperty ("value" ) String value ,
43
+ @ JsonProperty ("filename" ) String fileName ,
44
+ @ JsonProperty ("line" ) int line ,
33
45
@ JsonProperty ("nodes" ) List <Node > nodes ,
34
46
@ JsonProperty ("packageData" ) List <PackageData > packageData ) {
35
47
this .queryId = queryId ;
@@ -38,6 +50,12 @@ public Data(@JsonProperty("queryId") String queryId,
38
50
this .resultHash = resultHash ;
39
51
this .languageName = languageName ;
40
52
this .description = description ;
53
+ this .platform = platform ;
54
+ this .issueType = issueType ;
55
+ this .expectedValue = expectedValue ;
56
+ this .value = value ;
57
+ this .fileName = fileName ;
58
+ this .line = line ;
41
59
this .nodes = nodes ;
42
60
this .packageData = packageData ;
43
61
}
0 commit comments