InputTextMessageContent¶
- class telegram.InputTextMessageContent(message_text, parse_mode=None, entities=None, link_preview_options=None, *, disable_web_page_preview=None, api_kwargs=None)[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.Examples
Available In
- Parameters:
message_text (
str
) – Text of the message to be sent,1
-4096
characters after entities parsing.parse_mode (
str
, optional) – Mode for parsing entities. Seetelegram.constants.ParseMode
and formatting options for more details.entities (Sequence[
telegram.MessageEntity
], optional) –Sequence of special entities that appear in the caption, which can be specified instead of
parse_mode
.Changed in version 20.0: Accepts any
collections.abc.Sequence
as input instead of just a list. The input is converted to a tuple.link_preview_options (
LinkPreviewOptions
, optional) –Link preview generation options for the message. Mutually exclusive with
disable_web_page_preview
.Added in version 20.8.
- Keyword Arguments:
disable_web_page_preview (
bool
, optional) –Disables link previews for links in the sent message. Convenience parameter for setting
link_preview_options
. Mutually exclusive withlink_preview_options
.Changed in version 20.8: Bot API 7.0 introduced
link_preview_options
replacing this argument. PTB will automatically convert this argument to that one, but for advanced options, please uselink_preview_options
directly.Changed in version 21.0: This argument is now a keyword-only argument.
- message_text[source]¶
Text of the message to be sent,
1
-4096
characters after entities parsing.- Type:
- parse_mode[source]¶
Optional. Mode for parsing entities. See
telegram.constants.ParseMode
and formatting options for more details.- Type:
- entities[source]¶
Optional. Tuple of special entities that appear in the caption, which can be specified instead of
parse_mode
.Changed in version 20.0:
This attribute is now an immutable tuple.
This attribute is now always a tuple, that may be empty.
- Type:
Tuple[
telegram.MessageEntity
]