adding missing values

This commit is contained in:
Michael Arlt 2016-04-17 15:33:41 +02:00
parent 118ced4c6a
commit 9275f91b02

View File

@ -50,6 +50,26 @@ public class Sticker implements IBotApiObject {
this.fileSize = jsonObject.getInt(FILESIZE_FIELD);
}
}
public Integer getFileId() {
return fileId;
}
public String getWidth() {
return width;
}
public String getHeight() {
return height;
}
public String getThumb() {
return thumb;
}
public String getFileSize() {
return fileSize;
}
@Override
public void serialize(JsonGenerator gen, SerializerProvider serializers) throws IOException {