top10: 1.3.0 - Refined input JSON to match the new general stats-format
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / top10 / Key.java
index ffac8ea..aaf016c 100644 (file)
@@ -12,6 +12,7 @@ import lombok.*;
 @JsonIgnoreProperties(ignoreUnknown = true)
 public class Key
 {
-  private String user;
-  private String word;
+  private StatsType type;
+  private String channel;
+  private String key;
 }