LibTgBotPP
 All Classes Namespaces Files Functions Variables Typedefs Macros
User.h
Go to the documentation of this file.
1 #ifndef _TG_USER_H_
2 #define _TG_USER_H_
3 
4 #include <json/json.h>
5 #include <string>
6 
7 namespace Telegram {
8 
9  class User {
10  public:
11  User(Json::Value);
12 
13  private:
14  Json::Int64 id;
15  std::string first_name;
16  std::string last_name;
17  std::string username;
18  };
19 }
20 
21 #endif
User(Json::Value)
Definition: User.cc:3
std::string first_name
Definition: User.h:15
Json::Int64 id
Definition: User.h:14
std::string username
Definition: User.h:17
std::string last_name
Definition: User.h:16