telegram.InlineQueryResultContact

class telegram.InlineQueryResultContact(id: str, phone_number: str, first_name: str, last_name: str = None, reply_markup: ReplyMarkup = None, input_message_content: InputMessageContent = None, thumb_url: str = None, thumb_width: int = None, thumb_height: int = None, vcard: str = 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.

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.
  • vcard (str, optional) – Additional data about the contact in the form of a vCard, 0-2048 bytes.
  • 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.
type

‘contact’.

Type:str
id

Unique identifier for this result, 1-64 bytes.

Type:str
phone_number

Contact’s phone number.

Type:str
first_name

Contact’s first name.

Type:str
last_name

Optional. Contact’s last name.

Type:str
vcard

Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes.

Type:str
reply_markup

Optional. Inline keyboard attached to the message.

Type:telegram.InlineKeyboardMarkup
input_message_content

Optional. Content of the message to be sent instead of the contact.

Type:telegram.InputMessageContent
thumb_url

Optional. Url of the thumbnail for the result.

Type:str
thumb_width

Optional. Thumbnail width.

Type:int
thumb_height

Optional. Thumbnail height.

Type:int