MadelineProtoDocs/docs/API_docs/constructors/contacts.found.md

1.1 KiB

title description image redirect_from
contacts.found Users found by name substring and auxiliary data. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/contacts_found.html

Constructor: contacts.found

Back to constructors index

Users found by name substring and auxiliary data.

Attributes:

Name Type Required Description
my_results Array of Peer Yes Personalized results
results Array of Peer Yes List of found user identifiers
chats Array of Chat Yes Found chats
users Array of User Yes List of users

Type: contacts.Found

Example:

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

Or, if you're into Lua:

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