MadelineProto/docs/TD_docs/constructors/channelChatInfo.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

45 lines
749 B
Markdown

---
title: channelChatInfo
description: Chat with unlimited number of members
---
## Constructor: channelChatInfo
[Back to constructors index](index.md)
Chat with unlimited number of members
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|channel|[channel](../types/channel.md) | Yes|Information about the chat|
### Type: [ChatInfo](../types/ChatInfo.md)
### Example:
```
$channelChatInfo = ['_' => 'channelChatInfo', 'channel' => channel];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "channelChatInfo", "channel": channel}
```
Or, if you're into Lua:
```
channelChatInfo={_='channelChatInfo', channel=channel}
```