16 lines
494 B
Python
16 lines
494 B
Python
from enum import Enum
|
|
|
|
class UpdateType(str, Enum):
|
|
MESSAGE_CREATED = 'message_created'
|
|
BOT_ADDED = 'bot_added'
|
|
BOT_REMOVED = 'bot_removed'
|
|
BOT_STARTED = 'bot_started'
|
|
CHAT_TITLE_CHANGED = 'chat_title_changed'
|
|
MESSAGE_CALLBACK = 'message_callback'
|
|
MESSAGE_CHAT_CREATED = 'message_chat_created'
|
|
MESSAGE_EDITED = 'message_edited'
|
|
MESSAGE_REMOVED = 'message_removed'
|
|
USER_ADDED = 'user_added'
|
|
USER_REMOVED = 'user_removed'
|
|
|
|
ON_STARTED = 'on_started' |