mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 09:07:47 +01:00
869 B
869 B
title | description |
---|---|
channels.adminLogResults | channels_adminLogResults attributes, type and example |
Constructor: channels.adminLogResults
Attributes:
Name | Type | Required |
---|---|---|
events | Array of ChannelAdminLogEvent | Yes |
chats | Array of Chat | Yes |
users | Array of User | Yes |
Type: channels_AdminLogResults
Example:
$channels_adminLogResults = ['_' => 'channels.adminLogResults', 'events' => [ChannelAdminLogEvent], 'chats' => [Chat], 'users' => [User], ];
Or, if you're into Lua:
channels_adminLogResults={_='channels.adminLogResults', events={ChannelAdminLogEvent}, chats={Chat}, users={User}, }