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

1.5 KiB

title description image redirect_from
contacts.importedContacts Info on succesfully imported contacts. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/contacts_importedContacts.html

Constructor: contacts.importedContacts

Back to constructors index

Info on succesfully imported contacts.

Attributes:

Name Type Required Description
imported Array of ImportedContact Yes List of succesfully imported contacts
popular_invites Array of PopularContact Yes Popular contacts
retry_contacts Array of long Yes List of contact ids that could not be imported due to system limitation and will need to be imported at a later date.
Parameter added in Layer 13
users Array of User Yes List of users

Type: contacts.ImportedContacts

Example:

$contacts.importedContacts = ['_' => 'contacts.importedContacts', 'imported' => [ImportedContact, ImportedContact], 'popular_invites' => [PopularContact, PopularContact], 'retry_contacts' => [long, long], 'users' => [User, User]];

Or, if you're into Lua:

contacts.importedContacts={_='contacts.importedContacts', imported={ImportedContact}, popular_invites={PopularContact}, retry_contacts={long}, users={User}}