mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* Render shortcuts * Render docs * Added enumerations * Added docs * Use enums, removed Helper * Bump butcher * Added InputMediaType enum * Added MaskPositionPoint, InlineQueryResultType enums * Update texts * Added StickerType enum * Cover tests * Update docs * Fixed imports * Re-enabled all pre-commit hooks
16 lines
334 B
Python
16 lines
334 B
Python
from enum import Enum
|
|
|
|
|
|
class ChatMemberStatus(str, Enum):
|
|
"""
|
|
This object represents chat member status.
|
|
|
|
Source: https://core.telegram.org/bots/api#chatmember
|
|
"""
|
|
|
|
CREATOR = "creator"
|
|
ADMINISTRATOR = "administrator"
|
|
MEMBER = "member"
|
|
RESTRICTED = "restricted"
|
|
LEFT = "left"
|
|
KICKED = "kicked"
|