MadelineProto/docs/TD_docs/constructors/updateChatTitle.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

810 B

title description
updateChatTitle Title of chat was changed

Constructor: updateChatTitle

Back to constructors index

Title of chat was changed

Attributes:

Name Type Required Description
chat_id long Yes Chat identifier
title string Yes New chat title

Type: Update

Example:

$updateChatTitle = ['_' => 'updateChatTitle', 'chat_id' => long, 'title' => 'string'];

PWRTelegram json-encoded version:

{"_": "updateChatTitle", "chat_id": long, "title": "string"}

Or, if you're into Lua:

updateChatTitle={_='updateChatTitle', chat_id=long, title='string'}