MadelineProtoDocs/old_docs/API_docs_v18/constructors/messageActionChatCreate.md

40 lines
801 B
Markdown

---
title: messageActionChatCreate
description: Group created
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionChatCreate
[Back to constructors index](index.md)
Group created
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|title|[string](../types/string.md) | Yes|Group name|
|users|Array of [int](../types/int.md) | Yes|List of group members|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```php
$messageActionChatCreate = ['_' => 'messageActionChatCreate', 'title' => 'string', 'users' => [int, int]];
```
Or, if you're into Lua:
```lua
messageActionChatCreate={_='messageActionChatCreate', title='string', users={int}}
```