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