Layer 227
ChannelsChannelParticipantsObj
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 ChannelsChannelParticipantsObj constructor obj := &tg.ChannelsChannelParticipantsObj{ Count: 42, Participants: &tg.VectorChannelParticipant{}, Chats: &tg.VectorChat{}, Users: &tg.VectorUser{}, }