MadelineProtoDocs/old_docs/API_docs_v81/constructors/channels_channelParticipant...

1.1 KiB

title description image
channels.channelParticipants channels_channelParticipants attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channels.channelParticipants

Back to constructors index

Attributes:

Name Type Required
count int Yes
participants Array of ChannelParticipant Yes
users Array of User Yes

Type: channels_ChannelParticipants

Example:

$channels_channelParticipants = ['_' => 'channels.channelParticipants', 'count' => int, 'participants' => [ChannelParticipant, ChannelParticipant], 'users' => [User, User]];

PWRTelegram json-encoded version:

{"_": "channels.channelParticipants", "count": int, "participants": [ChannelParticipant], "users": [User]}

Or, if you're into Lua:

channels_channelParticipants={_='channels.channelParticipants', count=int, participants={ChannelParticipant}, users={User}}