mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-02 23:47:48 +01:00
884 B
884 B
title | description |
---|---|
channelAdminLogEventActionToggleInvites | channelAdminLogEventActionToggleInvites attributes, type and example |
Constructor: channelAdminLogEventActionToggleInvites
Attributes:
Name | Type | Required |
---|---|---|
new_value | Bool | Yes |
Type: ChannelAdminLogEventAction
Example:
$channelAdminLogEventActionToggleInvites = ['_' => 'channelAdminLogEventActionToggleInvites', 'new_value' => Bool];
PWRTelegram json-encoded version:
{"_": "channelAdminLogEventActionToggleInvites", "new_value": Bool}
Or, if you're into Lua:
channelAdminLogEventActionToggleInvites={_='channelAdminLogEventActionToggleInvites', new_value=Bool}