tgbot-cpp
Loading...
Searching...
No Matches
ChatPhoto.h
Go to the documentation of this file.
1#ifndef TGBOT_CHATPHOTO_H
2#define TGBOT_CHATPHOTO_H
3
4#include <memory>
5#include <string>
6
7namespace TgBot {
8
14class ChatPhoto {
15
16public:
17 typedef std::shared_ptr<ChatPhoto> Ptr;
18
23 std::string smallFileId;
24
29 std::string smallFileUniqueId;
30
35 std::string bigFileId;
36
41 std::string bigFileUniqueId;
42};
43}
44
45#endif //TGBOT_CHATPHOTO_H
This object represents a chat photo.
Definition ChatPhoto.h:14
std::string smallFileUniqueId
Unique file identifier of small (160x160) chat photo, which is supposed to be the same over time and ...
Definition ChatPhoto.h:29
std::string smallFileId
File identifier of small (160x160) chat photo. This fileId can be used only for photo download and on...
Definition ChatPhoto.h:23
std::string bigFileUniqueId
Unique file identifier of big (640x640) chat photo, which is supposed to be the same over time and fo...
Definition ChatPhoto.h:41
std::string bigFileId
File identifier of big (640x640) chat photo. This fileId can be used only for photo download and only...
Definition ChatPhoto.h:35
std::shared_ptr< ChatPhoto > Ptr
Definition ChatPhoto.h:17
Definition Api.h:39