InlineQueryResultArticle

class telegram.InlineQueryResultArticle(id, title, input_message_content, reply_markup=None, url=None, hide_url=None, description=None, thumb_url=None, thumb_width=None, thumb_height=None, thumbnail_url=None, thumbnail_width=None, thumbnail_height=None, *, api_kwargs=None)[source]

Bases: telegram.InlineQueryResult

This object represents a Telegram InlineQueryResultArticle.

Examples

Inline Bot

Parameters:
type[source]

'article'.

Type:

str

id[source]

Unique identifier for this result, 1- 64 Bytes.

Type:

str

title[source]

Title of the result.

Type:

str

input_message_content[source]

Content of the message to be sent.

Type:

telegram.InputMessageContent

reply_markup[source]

Optional. Inline keyboard attached to the message.

Type:

telegram.InlineKeyboardMarkup

url[source]

Optional. URL of the result.

Type:

str

hide_url[source]

Optional. Pass True, if you don’t want the URL to be shown in the message.

Type:

bool

description[source]

Optional. Short description of the result.

Type:

str

thumbnail_url[source]

Optional. Url of the thumbnail for the result.

New in version 20.2.

Type:

str

thumbnail_width[source]

Optional. Thumbnail width.

New in version 20.2.

Type:

int

thumbnail_height[source]

Optional. Thumbnail height.

New in version 20.2.

Type:

int

property thumb_height[source]

Optional. Thumbnail height.

Deprecated since version 20.2: As of Bot API 6.6 this attribute is deprecated in favor of thumbnail_height.

Type:

str

property thumb_url[source]

Optional. Url of the thumbnail for the result.

Deprecated since version 20.2: As of Bot API 6.6 this attribute is deprecated in favor of thumbnail_url.

Type:

str

property thumb_width[source]

Optional. Thumbnail width.

Deprecated since version 20.2: As of Bot API 6.6 this attribute is deprecated in favor of thumbnail_width.

Type:

str