MadelineProto/old_docs/API_docs_v40/constructors/channel.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.0 KiB

title description
channel channel attributes, type and example

Constructor: channel

Back to constructors index

Attributes:

Name Type Required
id int Yes
access_hash long Yes
title string Yes
photo ChatPhoto Yes
date int Yes
version int Yes

Type: Chat

Example:

$channel = ['_' => 'channel', 'id' => int, 'access_hash' => long, 'title' => 'string', 'photo' => ChatPhoto, 'date' => int, 'version' => int];

PWRTelegram json-encoded version:

{"_": "channel", "id": int, "access_hash": long, "title": "string", "photo": ChatPhoto, "date": int, "version": int}

Or, if you're into Lua:

channel={_='channel', id=int, access_hash=long, title='string', photo=ChatPhoto, date=int, version=int}