Added emoji
This commit is contained in:
parent
18101809d8
commit
b0fc0506a9
@ -17,6 +17,7 @@ namespace Telegram {
|
|||||||
Json::Int64 width;
|
Json::Int64 width;
|
||||||
Json::Int64 height;
|
Json::Int64 height;
|
||||||
PhotoSize *thumb;
|
PhotoSize *thumb;
|
||||||
|
std::string emoji;
|
||||||
Json::Int64 file_size;
|
Json::Int64 file_size;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -6,5 +6,6 @@ Telegram::Sticker::Sticker(Json::Value json) {
|
|||||||
this->width = json["width"].asInt64();
|
this->width = json["width"].asInt64();
|
||||||
this->height = json["height"].asInt64();
|
this->height = json["height"].asInt64();
|
||||||
this->thumb = new PhotoSize(json["thumb"]);
|
this->thumb = new PhotoSize(json["thumb"]);
|
||||||
|
this->emoji = json["emoji"].asString();
|
||||||
this->file_size = json["file_size"].asInt64();
|
this->file_size = json["file_size"].asInt64();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user