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

923 B

title description
messageGroupChatCreate New group chat created

Constructor: messageGroupChatCreate

Back to constructors index

New group chat created

Attributes:

Name Type Required Description
title string Yes Title of created group chat
members Array of user Yes Parcticipants of created group chat

Type: MessageContent

Example:

$messageGroupChatCreate = ['_' => 'messageGroupChatCreate', 'title' => 'string', 'members' => [user]];

PWRTelegram json-encoded version:

{"_": "messageGroupChatCreate", "title": "string", "members": [user]}

Or, if you're into Lua:

messageGroupChatCreate={_='messageGroupChatCreate', title='string', members={user}}