MadelineProtoDocs/old_docs/API_docs_v18/constructors/messageActionChannelCreate.md

39 lines
758 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: messageActionChannelCreate
description: The channel was created
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionChannelCreate
[Back to constructors index](index.md)
The channel was created
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|title|[string](../types/string.md) | Yes|Original channel/supergroup title|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```php
$messageActionChannelCreate = ['_' => 'messageActionChannelCreate', 'title' => 'string'];
```
Or, if you're into Lua:
```lua
messageActionChannelCreate={_='messageActionChannelCreate', title='string'}
```