39 lines
744 B
Markdown
39 lines
744 B
Markdown
|
---
|
||
|
title: messageActionChatEditTitle
|
||
|
description: Message action chat edit title
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: messageActionChatEditTitle
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Message action chat edit title
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|title|[string](../types/string.md) | Yes|Title|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [MessageAction](../types/MessageAction.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$messageActionChatEditTitle = ['_' => 'messageActionChatEditTitle', 'title' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
messageActionChatEditTitle={_='messageActionChatEditTitle', title='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|