2018-04-01 13:24:46 +02:00
|
|
|
---
|
|
|
|
title: channel
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Channel/supergroup info
|
2018-04-04 19:52:48 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2018-04-01 13:24:46 +02:00
|
|
|
---
|
2018-04-05 01:19:57 +02:00
|
|
|
# Constructor: channel
|
2018-04-01 13:24:46 +02:00
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Channel/supergroup info
|
2018-12-26 02:56:50 +01:00
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
### Attributes:
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|creator|[Bool](../types/Bool.md) | Optional|Whether the current user is the creator of this channel|
|
2018-12-26 02:56:50 +01:00
|
|
|
|kicked|[Bool](../types/Bool.md) | Optional|Kicked?|
|
2019-12-27 17:48:04 +01:00
|
|
|
|left|[Bool](../types/Bool.md) | Optional|Whether the current user has left this channel|
|
2018-12-26 02:56:50 +01:00
|
|
|
|editor|[Bool](../types/Bool.md) | Optional|Editor?|
|
|
|
|
|moderator|[Bool](../types/Bool.md) | Optional|Moderator?|
|
2019-12-27 17:48:04 +01:00
|
|
|
|broadcast|[Bool](../types/Bool.md) | Optional|Is this a channel?|
|
|
|
|
|verified|[Bool](../types/Bool.md) | Optional|Is this channel verified by telegram?|
|
|
|
|
|megagroup|[Bool](../types/Bool.md) | Optional|Is this a supergroup?|
|
|
|
|
|restricted|[Bool](../types/Bool.md) | Optional|Whether viewing/writing in this channel for a reason (see `restriction_reason`|
|
2018-12-26 02:56:50 +01:00
|
|
|
|democracy|[Bool](../types/Bool.md) | Optional|Democracy?|
|
2019-12-27 17:48:04 +01:00
|
|
|
|signatures|[Bool](../types/Bool.md) | Optional|Whether signatures are enabled (channels)|
|
|
|
|
|min|[Bool](../types/Bool.md) | Optional|See [min](https://core.telegram.org/api/min)|
|
|
|
|
|id|[int](../types/int.md) | Yes|ID of the channel|
|
2018-12-26 02:56:50 +01:00
|
|
|
|access\_hash|[long](../types/long.md) | Optional|Access hash|
|
|
|
|
|title|[string](../types/string.md) | Yes|Title|
|
|
|
|
|username|[string](../types/string.md) | Optional|Username|
|
2019-12-27 17:48:04 +01:00
|
|
|
|photo|[ChatPhoto](../types/ChatPhoto.md) | Optional|Profile photo|
|
|
|
|
|date|[int](../types/int.md) | Yes|Creation date|
|
|
|
|
|version|[int](../types/int.md) | Yes|Version of the channel (always `0`)|
|
2018-12-26 02:56:50 +01:00
|
|
|
|restriction\_reason|[string](../types/string.md) | Optional|Restriction reason|
|
2018-04-01 13:24:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Chat](../types/Chat.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2018-04-01 13:24:46 +02:00
|
|
|
$channel = ['_' => 'channel', 'creator' => Bool, 'kicked' => Bool, 'left' => Bool, 'editor' => Bool, 'moderator' => Bool, 'broadcast' => Bool, 'verified' => Bool, 'megagroup' => Bool, 'restricted' => Bool, 'democracy' => Bool, 'signatures' => Bool, 'min' => Bool, 'id' => int, 'access_hash' => long, 'title' => 'string', 'username' => 'string', 'photo' => ChatPhoto, 'date' => int, 'version' => int, 'restriction_reason' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
Or, if you're into Lua:
|
2018-04-01 13:24:46 +02:00
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2018-04-01 13:24:46 +02:00
|
|
|
channel={_='channel', creator=Bool, kicked=Bool, left=Bool, editor=Bool, moderator=Bool, broadcast=Bool, verified=Bool, megagroup=Bool, restricted=Bool, democracy=Bool, signatures=Bool, min=Bool, id=int, access_hash=long, title='string', username='string', photo=ChatPhoto, date=int, version=int, restriction_reason='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|