Layer 224
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 MessagesExportedChatInvitesObj constructor
obj := &tg.MessagesExportedChatInvitesObj{
    Count: 42,
    Invites: []tg.ExportedChatInvite{&tg.ExportedChatInvite{}},
    Users: []tg.User{&tg.User{}},
}