InputContactMessageContent¶
- class telegram.InputContactMessageContent(phone_number, first_name, last_name=None, vcard=None, *, api_kwargs=None)[source]¶
Bases:
telegram.InputMessageContent
Represents the content of a contact message to be sent as the result of an inline query.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
phone_number
is equal.Available In
- Parameters:
phone_number (
str
) – Contact’s phone number.first_name (
str
) – Contact’s first name.vcard (
str
, optional) – Additional data about the contact in the form of a vCard, 0-2048
bytes.