MadelineProto/docs/TD_docs/constructors/inlineQueryResultContact.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.3 KiB

title description
inlineQueryResultContact Represents user contact

Constructor: inlineQueryResultContact

Back to constructors index

Represents user contact

Attributes:

Name Type Required Description
id string Yes Unique identifier of this result
contact contact Yes User contact
thumb_url string Yes Url of the result thumb, if exists
thumb_width int Yes Thumb width, if known
thumb_height int Yes Thumb height, if known

Type: InlineQueryResult

Example:

$inlineQueryResultContact = ['_' => 'inlineQueryResultContact', 'id' => 'string', 'contact' => contact, 'thumb_url' => 'string', 'thumb_width' => int, 'thumb_height' => int];

PWRTelegram json-encoded version:

{"_": "inlineQueryResultContact", "id": "string", "contact": contact, "thumb_url": "string", "thumb_width": int, "thumb_height": int}

Or, if you're into Lua:

inlineQueryResultContact={_='inlineQueryResultContact', id='string', contact=contact, thumb_url='string', thumb_width=int, thumb_height=int}