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