InlineQueryResultArticle

class telegram.InlineQueryResultArticle(id, title, input_message_content, reply_markup=None, url=None, hide_url=None, description=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

Changed in version 20.5: Removed the deprecated arguments and attributes thumb_*.

Parameters:
  • id (str) – Unique identifier for this result, 1- 64 Bytes.

  • title (str) – Title of the result.

  • input_message_content (telegram.InputMessageContent) – Content of the message to be sent.

  • reply_markup (telegram.InlineKeyboardMarkup, optional) – Inline keyboard attached to the message.

  • url (str, optional) – URL of the result.

  • hide_url (bool, optional) –

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

    Deprecated since version 21.10: This attribute will be removed in future PTB versions. Pass an empty string as URL instead.

  • description (str, optional) – Short description of the result.

  • thumbnail_url (str, optional) –

    Url of the thumbnail for the result.

    Added in version 20.2.

  • thumbnail_width (int, optional) –

    Thumbnail width.

    Added in version 20.2.

  • thumbnail_height (int, optional) –

    Thumbnail height.

    Added in version 20.2.

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.

Deprecated since version 21.10: This attribute will be removed in future PTB versions. Pass an empty string as URL instead.

Type:

bool

description[source]

Optional. Short description of the result.

Type:

str

thumbnail_url[source]

Optional. Url of the thumbnail for the result.

Added in version 20.2.

Type:

str

thumbnail_width[source]

Optional. Thumbnail width.

Added in version 20.2.

Type:

int

thumbnail_height[source]

Optional. Thumbnail height.

Added in version 20.2.

Type:

int