MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEventActionToggleSignatures.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
1004 B
Markdown

---
title: channelAdminLogEventActionToggleSignatures
description: Toggle channel signatures
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionToggleSignatures
[Back to constructors index](index.md)
Toggle channel signatures
### 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];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "channelAdminLogEventActionToggleSignatures", "new_value": Bool}
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionToggleSignatures={_='channelAdminLogEventActionToggleSignatures', new_value=Bool}
```