yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
UserProfilePhotos.h
Go to the documentation of this file.
1 //
2 // Created by norbert on 24.08.17.
3 //
4 
5 #ifndef YATBCPP_USERPROFILEPHOTOS_H
6 #define YATBCPP_USERPROFILEPHOTOS_H
7 
8 #include <vector>
9 #include "PhotoSize.h"
10 
11 namespace yatbcpp{
14  public:
15  UserProfilePhotos(std::int32_t total_count,std::vector<std::vector<PhotoSize>> photos);
16 
18 
19  std::int32_t getTotal_count() const;
20 
21  const std::vector<std::vector<PhotoSize>> &getPhotos() const;
22 
23  private:
24  std::int32_t total_count;
25  std::vector<std::vector<PhotoSize> > photos;
26 
27 
28  };
29 
30 }
31 
32 #endif //YATBCPP_USERPROFILEPHOTOS_H
UserProfilePhotos(std::int32_t total_count, std::vector< std::vector< PhotoSize >> photos)
const std::vector< std::vector< PhotoSize > > & getPhotos() const
std::vector< std::vector< PhotoSize > > photos
std::int32_t getTotal_count() const
Definition: Bot.h:27