MadelineProto/old_docs/API_docs_v68/constructors/contacts_found.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

863 B

title description
contacts.found contacts_found attributes, type and example

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], 'chats' => [Chat], 'users' => [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}}