MadelineProto/docs/TD_docs/constructors/updateChatTitle.md

46 lines
810 B
Markdown
Raw Normal View History

---
title: updateChatTitle
description: Title of chat was changed
---
## Constructor: updateChatTitle
[Back to constructors index](index.md)
Title of chat was changed
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|chat\_id|[long](../types/long.md) | Yes|Chat identifier|
|title|[string](../types/string.md) | Yes|New chat title|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateChatTitle = ['_' => 'updateChatTitle', 'chat_id' => long, 'title' => 'string'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateChatTitle", "chat_id": long, "title": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateChatTitle={_='updateChatTitle', chat_id=long, title='string'}
```