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

1.2 KiB

title description
channelAdminLogEventActionParticipantToggleAdmin channelAdminLogEventActionParticipantToggleAdmin attributes, type and example

Constructor: channelAdminLogEventActionParticipantToggleAdmin

Back to constructors index

Attributes:

Name Type Required
prev_participant ChannelParticipant Yes
new_participant ChannelParticipant Yes

Type: ChannelAdminLogEventAction

Example:

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

PWRTelegram json-encoded version:

{"_": "channelAdminLogEventActionParticipantToggleAdmin", "prev_participant": ChannelParticipant, "new_participant": ChannelParticipant}

Or, if you're into Lua:

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