2.7 KiB
2.7 KiB
title | description | image |
---|---|---|
channel | Channel | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: channel
Channel
Attributes:
Name | Type | Required | Description |
---|---|---|---|
creator | Bool | Optional | Creator? |
left | Bool | Optional | Left? |
broadcast | Bool | Optional | Broadcast? |
verified | Bool | Optional | Verified? |
megagroup | Bool | Optional | Megagroup? |
restricted | Bool | Optional | Restricted? |
signatures | Bool | Optional | Signatures? |
min | Bool | Optional | Min? |
scam | Bool | Optional | Scam channel |
has_link | Bool | Optional | Has linked chat? |
id | int | Yes | ID |
access_hash | long | Optional | Access hash |
title | string | Yes | Title |
username | string | Optional | Username |
photo | ChatPhoto | Optional | Photo |
date | int | Yes | Date |
version | int | Yes | Version |
restriction_reason | string | Optional | Restriction reason |
admin_rights | ChatAdminRights | Optional | Admin rights of current user |
banned_rights | ChatBannedRights | Optional | Banned rights of current user |
default_banned_rights | ChatBannedRights | Optional | Global chat banned rights |
participants_count | int | Optional | Participants count |
Type: Chat
Example:
$channel = ['_' => 'channel', 'creator' => Bool, 'left' => Bool, 'broadcast' => Bool, 'verified' => Bool, 'megagroup' => Bool, 'restricted' => Bool, 'signatures' => Bool, 'min' => Bool, 'scam' => Bool, 'has_link' => Bool, 'id' => int, 'access_hash' => long, 'title' => 'string', 'username' => 'string', 'photo' => ChatPhoto, 'date' => int, 'version' => int, 'restriction_reason' => 'string', 'admin_rights' => ChatAdminRights, 'banned_rights' => ChatBannedRights, 'default_banned_rights' => ChatBannedRights, 'participants_count' => int];
Or, if you're into Lua:
channel={_='channel', creator=Bool, left=Bool, broadcast=Bool, verified=Bool, megagroup=Bool, restricted=Bool, signatures=Bool, min=Bool, scam=Bool, has_link=Bool, id=int, access_hash=long, title='string', username='string', photo=ChatPhoto, date=int, version=int, restriction_reason='string', admin_rights=ChatAdminRights, banned_rights=ChatBannedRights, default_banned_rights=ChatBannedRights, participants_count=int}