mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.2 KiB
1.2 KiB
title | description | nav_exclude | image | redirect_from |
---|---|---|---|---|
channels.channelParticipants | Represents multiple channel participants | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/channels_channelParticipants.html |
Constructor: channels.channelParticipants
Represents multiple channel participants
Attributes:
Name | Type | Required | Description |
---|---|---|---|
count | int | Yes | Total number of participants that correspond to the given query |
participants | Array of ChannelParticipant | Yes | Participants |
chats | Array of Chat | Yes | Mentioned chats |
users | Array of User | Yes | Users mentioned in participant info |
Type: channels.ChannelParticipants
Example:
$channels_channelParticipants = ['_' => 'channels.channelParticipants', 'count' => int, 'participants' => [ChannelParticipant, ChannelParticipant], 'chats' => [Chat, Chat], 'users' => [User, User]];