MadelineProtoDocs/docs/API_docs/constructors/channels_channelParticipant.md

956 B

title description image
channels.channelParticipant Represents a channel participant https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channels.channelParticipant

Back to constructors index

Represents a channel participant

Attributes:

Name Type Required Description
participant ChannelParticipant Yes The channel participant
users Array of User Yes Users

Type: channels_ChannelParticipant

Example:

$channels_channelParticipant = ['_' => 'channels.channelParticipant', 'participant' => ChannelParticipant, 'users' => [User, User]];

Or, if you're into Lua:

channels_channelParticipant={_='channels.channelParticipant', participant=ChannelParticipant, users={User}}