MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEventActionT...

39 lines
891 B
Markdown

---
title: channelAdminLogEventActionToggleSignatures
description: Channel signatures were enabled/disabled
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionToggleSignatures
[Back to constructors index](index.md)
Channel signatures were enabled/disabled
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|new\_value|[Bool](../types/Bool.md) | Yes|New value|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```php
$channelAdminLogEventActionToggleSignatures = ['_' => 'channelAdminLogEventActionToggleSignatures', 'new_value' => Bool];
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionToggleSignatures={_='channelAdminLogEventActionToggleSignatures', new_value=Bool}
```