MadelineProtoDocs/old_docs/API_docs_v38/constructors/contacts_found.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

957 B

title description image
contacts.found contacts_found attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: contacts.found

Back to constructors index

Attributes:

Name Type Required
results Array of Peer Yes
chats Array of Chat Yes
users Array of User Yes

Type: contacts_Found

Example:

$contacts_found = ['_' => 'contacts.found', 'results' => [Peer, Peer], 'chats' => [Chat, Chat], 'users' => [User, User]];

PWRTelegram json-encoded version:

{"_": "contacts.found", "results": [Peer], "chats": [Chat], "users": [User]}

Or, if you're into Lua:

contacts_found={_='contacts.found', results={Peer}, chats={Chat}, users={User}}