1.5 KiB
1.5 KiB
title | description |
---|---|
channel | channel attributes, type and example |
Constructor: channel
Attributes:
Name | Type | Required |
---|---|---|
creator | Bool | Optional |
kicked | Bool | Optional |
left | Bool | Optional |
editor | Bool | Optional |
moderator | Bool | Optional |
broadcast | Bool | Optional |
verified | Bool | Optional |
megagroup | Bool | Optional |
id | int | Yes |
access_hash | long | Yes |
title | string | Yes |
username | string | Optional |
photo | ChatPhoto | Yes |
date | int | Yes |
version | int | Yes |
Type: Chat
Example:
$channel = ['_' => 'channel', 'creator' => true, 'kicked' => true, 'left' => true, 'editor' => true, 'moderator' => true, 'broadcast' => true, 'verified' => true, 'megagroup' => true, 'id' => int, 'access_hash' => long, 'title' => string, 'username' => string, 'photo' => ChatPhoto, 'date' => int, 'version' => int, ];
Or, if you're into Lua:
channel={_='channel', creator=true, kicked=true, left=true, editor=true, moderator=true, broadcast=true, verified=true, megagroup=true, id=int, access_hash=long, title=string, username=string, photo=ChatPhoto, date=int, version=int, }