40 lines
928 B
Markdown
40 lines
928 B
Markdown
---
|
|
title: channelAdminLogEventActionChangeTitle
|
|
description: Change title
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: channelAdminLogEventActionChangeTitle
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Change title
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|prev\_value|[string](../types/string.md) | Yes|Previous value|
|
|
|new\_value|[string](../types/string.md) | Yes|New value|
|
|
|
|
|
|
|
|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$channelAdminLogEventActionChangeTitle = ['_' => 'channelAdminLogEventActionChangeTitle', 'prev_value' => 'string', 'new_value' => 'string'];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
channelAdminLogEventActionChangeTitle={_='channelAdminLogEventActionChangeTitle', prev_value='string', new_value='string'}
|
|
|
|
```
|
|
|
|
|