MadelineProto/docs/TD_docs/constructors/channelChatInfo.md

45 lines
749 B
Markdown
Raw Normal View History

---
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:
```
2017-07-23 16:33:46 +02:00
$channelChatInfo = ['_' => 'channelChatInfo', 'channel' => channel];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "channelChatInfo", "channel": channel}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
channelChatInfo={_='channelChatInfo', channel=channel}
```