telegram.InlineQueryResultContact

class telegram.InlineQueryResultContact(id, phone_number, first_name, last_name=None, reply_markup=None, input_message_content=None, thumb_url=None, thumb_width=None, thumb_height=None, **kwargs)

Bases: telegram.inline.inlinequeryresult.InlineQueryResult

Represents a contact with a phone number. By default, this contact will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the contact.

type

str – ‘contact’.

id

str – Unique identifier for this result, 1-64 bytes.

phone_number

str – Contact’s phone number.

first_name

str – Contact’s first name.

last_name

str – Optional. Contact’s last name.

reply_markup

telegram.InlineKeyboardMarkup – Optional. Inline keyboard attached to the message.

input_message_content

telegram.InputMessageContent – Optional. Content of the message to be sent instead of the contact.

thumb_url

str – Optional. Url of the thumbnail for the result.

thumb_width

int – Optional. Thumbnail width.

thumb_height

int – Optional. Thumbnail height.

Parameters:
  • id (str) – Unique identifier for this result, 1-64 bytes.
  • phone_number (str) – Contact’s phone number.
  • first_name (str) – Contact’s first name.
  • last_name (str, optional) – Contact’s last name.
  • reply_markup (telegram.InlineKeyboardMarkup, optional) – Inline keyboard attached to the message.
  • input_message_content (telegram.InputMessageContent, optional) – Content of the message to be sent instead of the contact.
  • thumb_url (str, optional) – Url of the thumbnail for the result.
  • thumb_width (int, optional) – Thumbnail width.
  • thumb_height (int, optional) – Thumbnail height.
  • **kwargs (dict) – Arbitrary keyword arguments.