MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEvent.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.1 KiB

title description image
channelAdminLogEvent Channel admin log event https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelAdminLogEvent

Back to constructors index

Channel admin log event

Attributes:

Name Type Required Description
id long Yes ID
date int Yes Date
user_id int Yes User ID
action ChannelAdminLogEventAction Yes Action

Type: ChannelAdminLogEvent

Example:

$channelAdminLogEvent = ['_' => 'channelAdminLogEvent', 'id' => long, 'date' => int, 'user_id' => int, 'action' => ChannelAdminLogEventAction];

PWRTelegram json-encoded version:

{"_": "channelAdminLogEvent", "id": long, "date": int, "user_id": int, "action": ChannelAdminLogEventAction}

Or, if you're into Lua:

channelAdminLogEvent={_='channelAdminLogEvent', id=long, date=int, user_id=int, action=ChannelAdminLogEventAction}