1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
contacts.importedContacts | Imported contacts | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: contacts.importedContacts
Imported contacts
Attributes:
Name | Type | Required | Description |
---|---|---|---|
imported | Array of ImportedContact | Yes | Imported |
popular_invites | Array of PopularContact | Yes | Popular invites |
retry_contacts | Array of long | Yes | Retry importing contacts whose client IDs appear here |
users | Array of User | Yes | 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}}