Layer 220
ChannelsChannelParticipants
Represents multiple channel participants
constructor
channels.channelParticipants#9ab0feaf count:int participants:Vector<ChannelParticipant> chats:Vector<Chat> users:Vector<User> = channels.ChannelParticipants;
Parameters
| Name | Type | Description |
|---|---|---|
| Count | int | Total number of participants that correspond to the given query |
| Participants | Vector<ChannelParticipant> | Participants |
| Chats | Vector<Chat> | Mentioned chats |
| Users | Vector<User> | Users mentioned in participant info |
Returns
channels.ChannelParticipantsGogram Example
// Creating ChannelsChannelParticipants constructor obj := &tg.ChannelsChannelParticipants{ Count: 0, Participants: []tg.ChannelParticipant{&tg.ChannelParticipant{}}, Chats: []tg.Chat{&tg.Chat{}}, Users: []tg.User{&tg.User{}}, }