Source code for aiogram.enums.message_entity_type

from enum import Enum


[docs] class MessageEntityType(str, Enum): """ This object represents type of message entity Source: https://core.telegram.org/bots/api#messageentity """ MENTION = "mention" HASHTAG = "hashtag" CASHTAG = "cashtag" BOT_COMMAND = "bot_command" URL = "url" EMAIL = "email" PHONE_NUMBER = "phone_number" BOLD = "bold" ITALIC = "italic" UNDERLINE = "underline" STRIKETHROUGH = "strikethrough" SPOILER = "spoiler" BLOCKQUOTE = "blockquote" CODE = "code" PRE = "pre" TEXT_LINK = "text_link" TEXT_MENTION = "text_mention" CUSTOM_EMOJI = "custom_emoji"