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

2.0 KiB

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

Constructor: channelFull

Back to constructors index

Attributes:

Name Type Required
id int Yes
about string Yes
participants_count int Optional
admins_count int Optional
kicked_count int Optional
read_inbox_max_id int Yes
unread_count int Yes
unread_important_count int Yes
chat_photo Photo Optional
notify_settings PeerNotifySettings Optional
exported_invite ExportedChatInvite Yes

Type: ChatFull

Example:

$channelFull = ['_' => 'channelFull', 'id' => int, 'about' => 'string', 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'read_inbox_max_id' => int, 'unread_count' => int, 'unread_important_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite];

PWRTelegram json-encoded version:

{"_": "channelFull", "id": int, "about": "string", "participants_count": int, "admins_count": int, "kicked_count": int, "read_inbox_max_id": int, "unread_count": int, "unread_important_count": int, "chat_photo": Photo, "notify_settings": PeerNotifySettings, "exported_invite": ExportedChatInvite}

Or, if you're into Lua:

channelFull={_='channelFull', id=int, about='string', participants_count=int, admins_count=int, kicked_count=int, read_inbox_max_id=int, unread_count=int, unread_important_count=int, chat_photo=Photo, notify_settings=PeerNotifySettings, exported_invite=ExportedChatInvite}