Layer 228
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.ExportedChatlistInvite{&tg.ExportedChatlistInviteObj{}},
    Chats: []tg.Chat{&tg.ChatObj{}},
    Users: []tg.User{&tg.UserObj{}},
}