1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 22:56:54 +01:00
MadelineProto/docs/TD_docs/constructors/messageChatChangeTitle.md
2017-07-23 16:11:02 +02:00

750 B

title description
messageChatChangeTitle Chat title changed

Constructor: messageChatChangeTitle

Back to constructors index

Chat title changed

Attributes:

Name Type Required Description
title string Yes New chat title

Type: MessageContent

Example:

$messageChatChangeTitle = ['_' => 'messageChatChangeTitle', 'title' => string, ];

PWRTelegram json-encoded version:

{"_":"messageChatChangeTitle","title":"string"}

Or, if you're into Lua:

messageChatChangeTitle={_='messageChatChangeTitle', title=string, }