mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 14:27:23 +01:00
1.1 KiB
1.1 KiB
title | description |
---|---|
channel | channel attributes, type and example |
Constructor: channel
Attributes:
Name | Type | Required |
---|---|---|
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', 'id' => int, 'access_hash' => long, 'title' => string, 'username' => string, 'photo' => ChatPhoto, 'date' => int, 'version' => int, ];
PWRTelegram json-encoded version:
{"_":"channel","id":"int","access_hash":"long","title":"string","username":"string","photo":"ChatPhoto","date":"int","version":"int"}
Or, if you're into Lua:
channel={_='channel', id=int, access_hash=long, title=string, username=string, photo=ChatPhoto, date=int, version=int, }