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; return fileId;
} }
public String getWidth() { public Integer getWidth() {
return width; return width;
} }
public String getHeight() { public Integer getHeight() {
return height; return height;
} }
@ -67,7 +67,7 @@ public class Sticker implements IBotApiObject {
return thumb; return thumb;
} }
public String getFileSize() { public Integer getFileSize() {
return fileSize; return fileSize;
} }