2016-12-20 13:15:22 +01:00
|
|
|
---
|
|
|
|
title: channel
|
2016-12-20 13:32:11 +01:00
|
|
|
description: channel attributes, type and example
|
2016-12-20 13:15:22 +01:00
|
|
|
---
|
2016-12-19 16:56:52 +01:00
|
|
|
## Constructor: channel
|
2016-12-20 13:15:22 +01:00
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
2016-12-19 16:56:52 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|creator|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|kicked|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|left|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|editor|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|moderator|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|broadcast|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|verified|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|megagroup|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|restricted|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|democracy|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|signatures|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|min|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|id|[int](../types/int.md) | Required|
|
|
|
|
|access\_hash|[long](../types/long.md) | Optional|
|
|
|
|
|title|[string](../types/string.md) | Required|
|
|
|
|
|username|[string](../types/string.md) | Optional|
|
|
|
|
|photo|[ChatPhoto](../types/ChatPhoto.md) | Required|
|
|
|
|
|date|[int](../types/int.md) | Required|
|
|
|
|
|version|[int](../types/int.md) | Required|
|
|
|
|
|restriction\_reason|[string](../types/string.md) | Optional|
|
|
|
|
|
2016-12-19 18:56:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
### Type: [Chat](../types/Chat.md)
|
|
|
|
|
|
|
|
|
2016-12-19 16:56:52 +01:00
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2016-12-30 21:21:36 +01:00
|
|
|
$channel = ['_' => 'channel', 'creator' => true, 'kicked' => true, 'left' => true, 'editor' => true, 'moderator' => true, 'broadcast' => true, 'verified' => true, 'megagroup' => true, 'restricted' => true, 'democracy' => true, 'signatures' => true, 'min' => true, 'id' => int, 'access_hash' => long, 'title' => string, 'username' => string, 'photo' => ChatPhoto, 'date' => int, 'version' => int, 'restriction_reason' => string, ];
|
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
|
|
|
```
|
|
|
|
|