MadelineProto/docs/TD_docs/constructors/messageChannelChatCreate.md
2017-07-23 16:11:02 +02:00

791 B

title description
messageChannelChatCreate New channel chat created

Constructor: messageChannelChatCreate

Back to constructors index

New channel chat created

Attributes:

Name Type Required Description
title string Yes Title of created channel chat

Type: MessageContent

Example:

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

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

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