MadelineProtoDocs/docs/API_docs/constructors/channelAdminLogEventActionToggleSlowMode.md

38 lines
904 B
Markdown
Raw Normal View History

2019-08-15 20:25:16 +02:00
---
title: channelAdminLogEventActionToggleSlowMode
description: channelAdminLogEventActionToggleSlowMode attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionToggleSlowMode
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|prev\_value|[int](../types/int.md) | Yes|
|new\_value|[int](../types/int.md) | Yes|
### 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}
```