tgbot-cpp
ChatMember.h
Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_CHATMEMBER_H
6 #define TGBOT_CHATMEMBER_H
7 
8 #include <memory>
9 #include <string>
10 
11 #include "tgbot/types/User.h"
12 
13 namespace TgBot {
14 
19 class ChatMember {
20 public:
21  typedef std::shared_ptr<ChatMember> Ptr;
22 
27 
31  std::string status;
32 };
33 }
34 
35 #endif //TGBOT_CHATMEMBER_H
Definition: Api.h:44
std::string status
Definition: ChatMember.h:31
User::Ptr user
Definition: ChatMember.h:26
std::shared_ptr< ChatMember > Ptr
Definition: ChatMember.h:21
std::shared_ptr< User > Ptr
Definition: User.h:38