telegram.InputTextMessageContent

class telegram.InputTextMessageContent(*args, **kwargs)[source]

Bases: telegram.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[source]

Text of the message to be sent, 1-4096 characters after entities parsing.

Type

str

parse_mode[source]

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.constants.ParseMode for the available modes.

Type

str

entities[source]

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[source]

Optional. Disables link previews for links in the sent message.

Type

bool

to_dict()[source]

See telegram.TelegramObject.to_dict().