2.8 KiB
2.8 KiB
title | description | image |
---|---|---|
channel | channel attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: channel
Attributes:
Name | Type | Required |
---|---|---|
creator | Bool | Optional |
left | Bool | Optional |
editor | Bool | Optional |
broadcast | Bool | Optional |
verified | Bool | Optional |
megagroup | Bool | Optional |
restricted | Bool | Optional |
democracy | Bool | Optional |
signatures | Bool | Optional |
min | Bool | Optional |
id | int | Yes |
access_hash | long | Optional |
title | string | Yes |
username | string | Optional |
photo | ChatPhoto | Optional |
date | int | Yes |
version | int | Yes |
restriction_reason | string | Optional |
admin_rights | ChannelAdminRights | Optional |
banned_rights | ChannelBannedRights | Optional |
participants_count | int | Optional |
Type: Chat
Example:
$channel = ['_' => 'channel', 'creator' => Bool, 'left' => Bool, 'editor' => 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', 'admin_rights' => ChannelAdminRights, 'banned_rights' => ChannelBannedRights, 'participants_count' => int];
PWRTelegram json-encoded version:
{"_": "channel", "creator": Bool, "left": Bool, "editor": 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", "admin_rights": ChannelAdminRights, "banned_rights": ChannelBannedRights, "participants_count": int}
Or, if you're into Lua:
channel={_='channel', creator=Bool, left=Bool, editor=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', admin_rights=ChannelAdminRights, banned_rights=ChannelBannedRights, participants_count=int}