Layer 227
constructor
chatlists.exportedInvites#10ab6dc7 invites:Vector<ExportedChatlistInvite> chats:Vector<Chat> users:Vector<User> = chatlists.ExportedInvites;

Parameters

Name Type Description
Invites Vector < ExportedChatlistInvite > The chat folder deep links.
Chats Vector < Chat > Related chat information
Users Vector < User > Related user information

Gogram Example

// Creating ChatlistsExportedInvitesObj constructor
obj := &tg.ChatlistsExportedInvitesObj{
    Invites: &tg.VectorExportedChatlistInvite{},
    Chats: &tg.VectorChat{},
    Users: &tg.VectorUser{},
}