MadelineProto/old_docs/API_docs_v68/constructors/channels_channelParticipants.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.0 KiB

title description
channels.channelParticipants channels_channelParticipants attributes, type and example

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], 'users' => [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}}