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