MadelineProtoDocs/docs/API_docs/constructors/contacts_found.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

1.1 KiB

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
my_results Array of Peer Yes
results Array of Peer Yes
chats Array of Chat Yes
users Array of User Yes

Type: contacts_Found

Example:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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