channels.getParticipants
Layer 225
Constructor ID: 0x77ced9d0
Returns: ChannelParticipants
Parameters
| Name | Type | Description |
|---|---|---|
channel | InputChannel | |
filter | ChannelParticipantsFilter | |
offset | int32 | |
limit | int32 | |
hash | int64 |
Example
go
result, err := client.Raw(&tg.GetParticipantsRequest{
channel: nil, // InputChannel
filter: nil, // ChannelParticipantsFilter
offset: 0,
limit: 0,
hash: 0,
})
if err != nil {
panic(err)
}
print(result)