MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEvent.md

985 B

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

Constructor: channelAdminLogEvent

Back to constructors index

Admin log event

Attributes:

Name Type Required Description
id long Yes Event 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];

Or, if you're into Lua:

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