MadelineProtoDocs/old_docs/API_docs_v81/constructors/channels_adminLogResults.md

1.1 KiB

title description image
channels.adminLogResults channels_adminLogResults attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channels.adminLogResults

Back to constructors index

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, ChannelAdminLogEvent], 'chats' => [Chat, Chat], 'users' => [User, User]];

PWRTelegram json-encoded version:

{"_": "channels.adminLogResults", "events": [ChannelAdminLogEvent], "chats": [Chat], "users": [User]}

Or, if you're into Lua:

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