mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.3 KiB
1.3 KiB
title | description | nav_exclude | image | redirect_from |
---|---|---|---|---|
contacts.importedContacts | Info on successfully imported contacts. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/contacts_importedContacts.html |
Constructor: contacts.importedContacts
Info on successfully imported contacts.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
imported | Array of ImportedContact | Yes | List of successfully 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. |
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]];