tgbot-cpp
Loading...
Searching...
No Matches
ChatMemberLeft.h
Go to the documentation of this file.
1#ifndef TGBOT_CHATMEMBERLEFT_H
2#define TGBOT_CHATMEMBERLEFT_H
3
5
6#include <memory>
7
8namespace TgBot {
9
15class ChatMemberLeft : public ChatMember {
16public:
17 static const std::string STATUS;
18
19 typedef std::shared_ptr<ChatMemberLeft> Ptr;
20
22 this->status = STATUS;
23 }
24};
25}
26
27#endif //TGBOT_CHATMEMBERLEFT_H
This abstract class is base of all chat members.
Definition ChatMember.h:18
std::string status
The member's status in the chat.
Definition ChatMember.h:30
Represents a chat member that isn't currently a member of the chat, but may join it themselves.
std::shared_ptr< ChatMemberLeft > Ptr
static const std::string STATUS
Definition Api.h:39