2017-01-02 19:50:37 +01:00
|
|
|
---
|
|
|
|
title: channelFull
|
|
|
|
description: channelFull attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: channelFull
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-03-11 19:54:51 +01:00
|
|
|
|id|[int](../types/int.md) | Yes|
|
|
|
|
|about|[string](../types/string.md) | Yes|
|
2017-01-02 19:50:37 +01:00
|
|
|
|participants\_count|[int](../types/int.md) | Optional|
|
|
|
|
|admins\_count|[int](../types/int.md) | Optional|
|
|
|
|
|kicked\_count|[int](../types/int.md) | Optional|
|
2017-03-11 19:54:51 +01:00
|
|
|
|read\_inbox\_max\_id|[int](../types/int.md) | Yes|
|
|
|
|
|unread\_count|[int](../types/int.md) | Yes|
|
|
|
|
|unread\_important\_count|[int](../types/int.md) | Yes|
|
|
|
|
|chat\_photo|[Photo](../types/Photo.md) | Yes|
|
|
|
|
|notify\_settings|[PeerNotifySettings](../types/PeerNotifySettings.md) | Yes|
|
|
|
|
|exported\_invite|[ExportedChatInvite](../types/ExportedChatInvite.md) | Yes|
|
2017-01-02 19:50:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ChatFull](../types/ChatFull.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$channelFull = ['_' => 'channelFull', 'id' => int, 'about' => 'string', 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'read_inbox_max_id' => int, 'unread_count' => int, 'unread_important_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite];
|
Added docs for layer 18, 23, 25, 27, 33, 38, 40, 41, 42, 44, 45, 46, 51, 53, 55
2017-01-02 21:04:36 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "channelFull", "id": int, "about": "string", "participants_count": int, "admins_count": int, "kicked_count": int, "read_inbox_max_id": int, "unread_count": int, "unread_important_count": int, "chat_photo": Photo, "notify_settings": PeerNotifySettings, "exported_invite": ExportedChatInvite}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
channelFull={_='channelFull', id=int, about='string', participants_count=int, admins_count=int, kicked_count=int, read_inbox_max_id=int, unread_count=int, unread_important_count=int, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite}
|
2017-03-11 19:54:51 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|