MadelineProtoDocs/old_docs/API_docs_v66/constructors/channelParticipantKicked.md

880 B

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

Constructor: channelParticipantKicked

Back to constructors index

Channel participant kicked

Attributes:

Name Type Required Description
user_id int Yes User ID
kicked_by int Yes Kicked by
date int Yes Date

Type: ChannelParticipant

Example:

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

Or, if you're into Lua:

channelParticipantKicked={_='channelParticipantKicked', user_id=int, kicked_by=int, date=int}