898 B
898 B
title | description | image |
---|---|---|
contacts.found | contacts_found attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: contacts.found
Attributes:
Name | Type | Required |
---|---|---|
results | Array of ContactFound | Yes |
users | Array of User | Yes |
Type: contacts_Found
Example:
$contacts_found = ['_' => 'contacts.found', 'results' => [ContactFound, ContactFound], 'users' => [User, User]];
PWRTelegram json-encoded version:
{"_": "contacts.found", "results": [ContactFound], "users": [User]}
Or, if you're into Lua:
contacts_found={_='contacts.found', results={ContactFound}, users={User}}