Layer 220
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 ContactsImportedContacts constructor
obj := &tg.ContactsImportedContacts{
    Imported: []tg.ImportedContact{&tg.ImportedContact{}},
    PopularInvites: []tg.PopularContact{&tg.PopularContact{}},
    RetryContacts: []long{},
    Users: []tg.User{&tg.User{}},
}