MadelineProtoDocs/docs/API_docs/constructors/channels.adminLogResults.md

1.0 KiB

title description image redirect_from
channels.adminLogResults Admin log events https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/channels_adminLogResults.html

Constructor: channels.adminLogResults

Back to constructors index

Admin log events

Attributes:

Name Type Required Description
events Array of ChannelAdminLogEvent Yes Events
chats Array of Chat Yes Chats
users Array of User Yes Users

Type: channels.AdminLogResults

Example:

$channels.adminLogResults = ['_' => 'channels.adminLogResults', 'events' => [ChannelAdminLogEvent, ChannelAdminLogEvent], 'chats' => [Chat, Chat], 'users' => [User, User]];

Or, if you're into Lua:

channels.adminLogResults={_='channels.adminLogResults', events={ChannelAdminLogEvent}, chats={Chat}, users={User}}