MadelineProto/docs/API_docs/constructors/channelAdminLogEventActionParticipantToggleBan.md
2017-06-30 15:36:33 +02:00

1.0 KiB

title description
channelAdminLogEventActionParticipantToggleBan channelAdminLogEventActionParticipantToggleBan attributes, type and example

Constructor: channelAdminLogEventActionParticipantToggleBan

Back to constructors index

Attributes:

Name Type Required
prev_participant ChannelParticipant Yes
new_participant ChannelParticipant Yes

Type: ChannelAdminLogEventAction

Example:

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

Or, if you're into Lua:

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