MadelineProtoDocs/old_docs/API_docs_v38/constructors/channel.md
2018-04-04 19:52:48 +02:00

1.2 KiB

title description image
channel channel attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channel

Back to constructors index

Attributes:

Name Type Required
id int Yes
access_hash long Yes
title string Yes
username string Optional
photo ChatPhoto Optional
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}