Layer 228
MessagesExportedChatInvitesObj
Info about chat invites exported by a certain admin.
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 |
Returns
messages.ExportedChatInvitesGogram Example
// Creating MessagesExportedChatInvitesObj constructor obj := &tg.MessagesExportedChatInvitesObj{ Count: 20, Invites: []tg.ExportedChatInvite{&tg.ChatInviteExported{}}, Users: []tg.User{&tg.UserObj{}}, }