blob: 7f5b704438ba07440d6fae30c017430407fb463f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "tgbot/types/ChatMemberOwner.h"
#include "tgbot/types/ChatMemberAdministrator.h"
#include "tgbot/types/ChatMemberMember.h"
#include "tgbot/types/ChatMemberRestricted.h"
#include "tgbot/types/ChatMemberLeft.h"
#include "tgbot/types/ChatMemberBanned.h"
#include <string>
using namespace TgBot;
const std::string ChatMemberOwner::STATUS = "creator";
const std::string ChatMemberAdministrator::STATUS = "administrator";
const std::string ChatMemberMember::STATUS = "member";
const std::string ChatMemberRestricted::STATUS = "restricted";
const std::string ChatMemberLeft::STATUS = "left";
const std::string ChatMemberBanned::STATUS = "kicked";
|