Layer 220
constructor
messages.exportedChatInvites#bdc62dcc count:int invites:Vector<ExportedChatInvite> users:Vector<User> = messages.ExportedChatInvites;

Parameters

Name Type Description
Count int Number of invites exported by the admin
Invites Vector<ExportedChatInvite> Exported invites
Users Vector<User> Info about the admin

Gogram Example

// Creating MessagesExportedChatInvites constructor
obj := &tg.MessagesExportedChatInvites{
    Count: 0,
    Invites: []tg.ExportedChatInvite{&tg.ExportedChatInvite{}},
    Users: []tg.User{&tg.User{}},
}