MadelineProto/docs/TD_docs/constructors/messageGroupChatCreate.md

781 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], ];

Or, if you're into Lua:

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