MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEventActionP...

1.2 KiB

title description image
channelAdminLogEventActionParticipantToggleAdmin The admin [rights](https://core.telegram.org/api/rights) of a user were changed https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelAdminLogEventActionParticipantToggleAdmin

Back to constructors index

The admin rights of a user were changed

Attributes:

Name Type Required Description
prev_participant ChannelParticipant Yes Previous admin rights
new_participant ChannelParticipant Yes New admin rights

Type: ChannelAdminLogEventAction

Example:

$channelAdminLogEventActionParticipantToggleAdmin = ['_' => 'channelAdminLogEventActionParticipantToggleAdmin', 'prev_participant' => ChannelParticipant, 'new_participant' => ChannelParticipant];

Or, if you're into Lua:

channelAdminLogEventActionParticipantToggleAdmin={_='channelAdminLogEventActionParticipantToggleAdmin', prev_participant=ChannelParticipant, new_participant=ChannelParticipant}