telegram.InputTextMessageContent
- class telegram.InputTextMessageContent(message_text, parse_mode=None, disable_web_page_preview=None, entities=None, **_kwargs)
Bases:
InputMessageContent
Represents the content of a text message to be sent as the result of an inline query.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
message_text
is equal.- Parameters:
message_text (
str
) – Text of the message to be sent, 1-4096 characters after entities parsing. Also found astelegram.constants.MAX_MESSAGE_LENGTH
.parse_mode (
str
, optional) – Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot’s message. See the constants intelegram.ParseMode
for the available modes.entities (List[
telegram.MessageEntity
], optional) – List of special entities that appear in the caption, which can be specified instead ofparse_mode
.disable_web_page_preview (
bool
, optional) – Disables link previews for links in the sent message.**kwargs (
dict
) – Arbitrary keyword arguments.
- message_text
Text of the message to be sent, 1-4096 characters after entities parsing.
- Type:
str
- parse_mode
Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot’s message. See the constants in
telegram.ParseMode
for the available modes.- Type:
str
- entities
Optional. List of special entities that appear in the caption, which can be specified instead of
parse_mode
.- Type:
List[
telegram.MessageEntity
]
- disable_web_page_preview
Optional. Disables link previews for links in the sent message.
- Type:
bool
- to_dict()