tgbot-cpp
Loading...
Searching...
No Matches
UserProfilePhotos.h
Go to the documentation of this file.
1#ifndef TGBOT_CPP_USERPROFILEPHOTOS_H
2#define TGBOT_CPP_USERPROFILEPHOTOS_H
3
5
6#include <cstdint>
7#include <vector>
8#include <memory>
9
10namespace TgBot {
11
18
19public:
20 typedef std::shared_ptr<UserProfilePhotos> Ptr;
21
25 std::int32_t totalCount;
26
30 std::vector<std::vector<PhotoSize::Ptr>> photos;
31};
32
33}
34
35#endif //TGBOT_CPP_USERPROFILEPHOTOS_H
This object represent a user's profile pictures.
std::vector< std::vector< PhotoSize::Ptr > > photos
Requested profile pictures (in up to 4 sizes each).
std::int32_t totalCount
Total number of profile pictures the target user has.
std::shared_ptr< UserProfilePhotos > Ptr
Definition Api.h:39