Layer 220
ContactsImportedContacts
Info on successfully imported contacts.
constructor
contacts.importedContacts#77d01c3b imported:Vector<ImportedContact> popular_invites:Vector<PopularContact> retry_contacts:Vector<long> users:Vector<User> = contacts.ImportedContacts;
Parameters
| Name | Type | Description |
|---|---|---|
| Imported | Vector<ImportedContact> | List of successfully imported contacts |
| PopularInvites | Vector<PopularContact> | Popular contacts |
| RetryContacts | Vector<long> | List of contact ids that could not be imported due to system limitation and will need to be imported at a later date. |
| Users | Vector<User> | List of users |
Returns
contacts.ImportedContactsGogram Example
// Creating ContactsImportedContacts constructor obj := &tg.ContactsImportedContacts{ Imported: []tg.ImportedContact{&tg.ImportedContact{}}, PopularInvites: []tg.PopularContact{&tg.PopularContact{}}, RetryContacts: []long{}, Users: []tg.User{&tg.User{}}, }