fixed types integer and string

sorry, did mess up
This commit is contained in:
Michael Arlt 2016-04-17 15:41:36 +02:00
parent 9275f91b02
commit 28c2f3336b

View File

@ -51,15 +51,15 @@ public class Sticker implements IBotApiObject {
}
}
public Integer getFileId() {
public String getFileId() {
return fileId;
}
public String getWidth() {
public Integer getWidth() {
return width;
}
public String getHeight() {
public Integer getHeight() {
return height;
}
@ -67,7 +67,7 @@ public class Sticker implements IBotApiObject {
return thumb;
}
public String getFileSize() {
public Integer getFileSize() {
return fileSize;
}