Layer 227
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

Gogram Example

// Creating ContactsImportedContactsObj constructor
obj := &tg.ContactsImportedContactsObj{
    Imported: &tg.VectorImportedContact{},
    PopularInvites: &tg.VectorPopularContact{},
    RetryContacts: &tg.VectorLong{},
    Users: &tg.VectorUser{},
}