1#ifndef TGBOT_CPP_USERPROFILEPHOTOS_H 
    2#define TGBOT_CPP_USERPROFILEPHOTOS_H 
   20    typedef std::shared_ptr<UserProfilePhotos> 
Ptr;
 
   30    std::vector<std::vector<PhotoSize::Ptr>> 
photos;
 
 
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