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