MadelineProtoDocs/old_docs/API_docs_v14/constructors/channelParticipant.md

785 B

title description image
channelParticipant Channel/supergroup participant https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelParticipant

Back to constructors index

Channel/supergroup participant

Attributes:

Name Type Required Description
user_id int Yes Pariticipant user ID
date int Yes Date joined

Type: ChannelParticipant

Example:

$channelParticipant = ['_' => 'channelParticipant', 'user_id' => int, 'date' => int];

Or, if you're into Lua:

channelParticipant={_='channelParticipant', user_id=int, date=int}