MadelineProto/old_docs/API_docs_v18/constructors/messageActionChatCreate.md

37 lines
682 B
Markdown
Raw Normal View History

---
title: messageActionChatCreate
description: messageActionChatCreate attributes, type and example
---
## Constructor: messageActionChatCreate
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|title|[string](../types/string.md) | Yes|
|users|Array of [int](../types/int.md) | Yes|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```
$messageActionChatCreate = ['_' => 'messageActionChatCreate', 'title' => string, 'users' => [int], ];
```
Or, if you're into Lua:
```
messageActionChatCreate={_='messageActionChatCreate', title=string, users={int}, }
```