@@ -25,9 +25,12 @@ public class Data {
2525 String expectedValue ;
2626 String value ;
2727 String fileName ;
28+ String packageIdentifier ;
29+ String recommendedVersion ;
2830 int line ;
2931 List <Node > nodes ;
3032 List <PackageData > packageData ;
33+ ScaPackageData scaPackageData ;
3134
3235 public Data (@ JsonProperty ("queryId" ) String queryId ,
3336 @ JsonProperty ("queryName" ) String queryName ,
@@ -39,9 +42,12 @@ public Data(@JsonProperty("queryId") String queryId,
3942 @ JsonProperty ("expectedValue" ) String expectedValue ,
4043 @ JsonProperty ("value" ) String value ,
4144 @ JsonProperty ("filename" ) String fileName ,
45+ @ JsonProperty ("packageIdentifier" ) String packageIdentifier ,
46+ @ JsonProperty ("recommendedVersion" ) String recommendedVersion ,
4247 @ JsonProperty ("line" ) int line ,
4348 @ JsonProperty ("nodes" ) List <Node > nodes ,
44- @ JsonProperty ("packageData" ) List <PackageData > packageData ) {
49+ @ JsonProperty ("packageData" ) List <PackageData > packageData ,
50+ @ JsonProperty ("scaPackageData" ) ScaPackageData scaPackageData ) {
4551 this .queryId = queryId ;
4652 this .queryName = queryName ;
4753 this .group = group ;
@@ -52,8 +58,11 @@ public Data(@JsonProperty("queryId") String queryId,
5258 this .expectedValue = expectedValue ;
5359 this .value = value ;
5460 this .fileName = fileName ;
61+ this .packageIdentifier = packageIdentifier ;
62+ this .recommendedVersion = recommendedVersion ;
5563 this .line = line ;
5664 this .nodes = nodes ;
5765 this .packageData = packageData ;
66+ this .scaPackageData = scaPackageData ;
5867 }
5968}
0 commit comments