MadelineProtoDocs/old_docs/API_docs_v105/constructors/channelAdminLogEventActionTogglePreHistoryHidden.md

39 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +02:00
---
title: channelAdminLogEventActionTogglePreHistoryHidden
2019-12-27 17:48:04 +01:00
description: The hidden prehistory setting was [changed](../methods/channels.togglePreHistoryHidden.md)
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionTogglePreHistoryHidden
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
The hidden prehistory setting was [changed](../methods/channels.togglePreHistoryHidden.md)
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|new\_value|[Bool](../types/Bool.md) | Yes|New value|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```php
$channelAdminLogEventActionTogglePreHistoryHidden = ['_' => 'channelAdminLogEventActionTogglePreHistoryHidden', 'new_value' => Bool];
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionTogglePreHistoryHidden={_='channelAdminLogEventActionTogglePreHistoryHidden', new_value=Bool}
```