mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
31 lines
752 B
Markdown
31 lines
752 B
Markdown
|
---
|
||
|
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]];
|
||
|
```
|