MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEventActionToggleSlowMode.md
2019-12-27 17:48:04 +01:00

40 lines
1.1 KiB
Markdown

---
title: channelAdminLogEventActionToggleSlowMode
description: [Slow mode setting for supergroups was changed](../methods/channels.toggleSlowMode.md)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionToggleSlowMode
[Back to constructors index](index.md)
[Slow mode setting for supergroups was changed](../methods/channels.toggleSlowMode.md)
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|prev\_value|[int](../types/int.md) | Yes|Previous slow mode value|
|new\_value|[int](../types/int.md) | Yes|New slow mode value|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```php
$channelAdminLogEventActionToggleSlowMode = ['_' => 'channelAdminLogEventActionToggleSlowMode', 'prev_value' => int, 'new_value' => int];
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionToggleSlowMode={_='channelAdminLogEventActionToggleSlowMode', prev_value=int, new_value=int}
```