#ifndef TGBOT_CPP_USERPROFILEPHOTOS_H #define TGBOT_CPP_USERPROFILEPHOTOS_H #include "tgbot/types/PhotoSize.h" #include #include #include namespace TgBot { /** * @brief This object represent a user's profile pictures. * * @ingroup types */ class UserProfilePhotos { public: typedef std::shared_ptr Ptr; /** * @brief Total number of profile pictures the target user has. */ std::int32_t totalCount; /** * @brief Requested profile pictures (in up to 4 sizes each). */ std::vector> photos; }; } #endif //TGBOT_CPP_USERPROFILEPHOTOS_H