LibTgBotPP/include/Telegram/Sticker.h
2016-05-23 13:10:51 +02:00

26 lines
369 B
C++

#ifndef _TG_STICKER_H_
#define _TG_STICKER_H_
#include <json/json.h>
#include <string>
#include <Telegram/PhotoSize.h>
namespace Telegram {
class Sticker {
public:
Sticker(Json::Value);
private:
std::string file_id;
Json::Int64 width;
Json::Int64 height;
PhotoSize *thumb;
std::string emoji;
Json::Int64 file_size;
};
}
#endif