Interface InlineQueryResultContact

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.

Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.

interface InlineQueryResultContact {
    first_name: string;
    id: string;
    input_message_content?: InputMessageContent;
    last_name?: string;
    phone_number: string;
    reply_markup?: InlineKeyboardMarkup;
    thumbnail_height?: number;
    thumbnail_url?: string;
    thumbnail_width?: number;
    type: "contact";
    vcard?: string;
}

Properties

first_name: string

Contact's first name

id: string

Unique identifier for this result, 1-64 Bytes

input_message_content?: InputMessageContent

Content of the message to be sent instead of the contact

last_name?: string

Contact's last name

phone_number: string

Contact's phone number

reply_markup?: InlineKeyboardMarkup

Inline keyboard attached to the message

thumbnail_height?: number

Thumbnail height

thumbnail_url?: string

Url of the thumbnail for the result

thumbnail_width?: number

Thumbnail width

type: "contact"

Type of the result, must be contact

vcard?: string

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