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

1.0 KiB

title description image redirect_from
contacts.contacts The current user's contact list and info on users. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/contacts_contacts.html

Constructor: contacts.contacts

Back to constructors index

The current user's contact list and info on users.

Attributes:

Name Type Required Description
contacts Array of Contact Yes Contact list
saved_count int Yes Number of contacts that were saved successfully
users Array of User Yes User list

Type: contacts.Contacts

Example:

$contacts.contacts = ['_' => 'contacts.contacts', 'contacts' => [Contact, Contact], 'saved_count' => int, 'users' => [User, User]];

Or, if you're into Lua:

contacts.contacts={_='contacts.contacts', contacts={Contact}, saved_count=int, users={User}}