Long poll listener
This commit is contained in:
19
src/main/java/ru/dmitriymx/vkapi/longpoll/Event.java
Normal file
19
src/main/java/ru/dmitriymx/vkapi/longpoll/Event.java
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* DmitriyMX <dimon550@gmail.com>
|
||||
* 2017-04-11
|
||||
*/
|
||||
package ru.dmitriymx.vkapi.longpoll;
|
||||
|
||||
import com.google.gson.JsonArray;
|
||||
|
||||
public class Event {
|
||||
private JsonArray jsonArray;
|
||||
|
||||
Event(JsonArray jsonArray) {
|
||||
this.jsonArray = jsonArray;
|
||||
}
|
||||
|
||||
public JsonArray getRawData() {
|
||||
return jsonArray;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user