telegram.Contact¶
-
class
telegram.Contact(phone_number: str, first_name: str, last_name: str = None, user_id: int = None, vcard: str = None, **kwargs)¶ Bases:
telegram.base.TelegramObjectThis object represents a phone contact.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
phone_numberis equal.-
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
-
user_id¶ Optional. Contact’s user identifier in Telegram.
Type: int
-
vcard¶ Optional. Additional data about the contact in the form of a vCard.
Type: str
Parameters: - phone_number (
str) – Contact’s phone number. - first_name (
str) – Contact’s first name. - last_name (
str, optional) – Contact’s last name. - user_id (
int, optional) – Contact’s user identifier in Telegram. - vcard (
str, optional) – Additional data about the contact in the form of a vCard. - **kwargs (
dict) – Arbitrary keyword arguments.
-