MadelineProtoDocs/docs/API_docs/constructors/messageActionChatCreate.md

31 lines
752 B
Markdown
Raw Normal View History

2024-05-01 14:53:46 +02:00
---
title: "messageActionChatCreate"
description: "Group created"
nav_exclude: true
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionChatCreate
[Back to constructors index](/API_docs/constructors/index.html)
Group created
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|title|[string](/API_docs/types/string.html) | Yes|Group name|
|users|Array of [long](/API_docs/types/long.html) | Yes|List of group members|
### Type: [MessageAction](/API_docs/types/MessageAction.html)
### Example:
```
$messageActionChatCreate = ['_' => 'messageActionChatCreate', 'title' => 'string', 'users' => [long, long]];
```