MadelineProtoDocs/old_docs/API_docs_v18/constructors/contacts_found.md
2019-12-27 17:48:04 +01:00

861 B

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

Constructor: contacts.found

Back to constructors index

Users found by name substring and auxiliary data.

Attributes:

Name Type Required Description
results Array of ContactFound Yes Results
users Array of User Yes Users

Type: contacts_Found

Example:

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

Or, if you're into Lua:

contacts_found={_='contacts.found', results={ContactFound}, users={User}}