You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
369 B
25 lines
369 B
#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
|
|
|