MadelineProto/old_docs/API_docs_v38/constructors/contacts_contacts.md
2017-07-23 16:11:02 +02:00

817 B

title description
contacts.contacts contacts_contacts attributes, type and example

Constructor: contacts.contacts

Back to constructors index

Attributes:

Name Type Required
contacts Array of Contact Yes
users Array of User Yes

Type: contacts_Contacts

Example:

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

PWRTelegram json-encoded version:

{"_":"contacts.contacts","contacts":["Contact"],"users":["User"]}

Or, if you're into Lua:

contacts_contacts={_='contacts.contacts', contacts={Contact}, users={User}, }