MadelineProtoDocs/old_docs/API_docs_v14/constructors/channelForbidden.md

1.1 KiB

title description image
channelForbidden Indicates a channel/supergroup we can't access because we were banned, or for some other reason. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelForbidden

Back to constructors index

Indicates a channel/supergroup we can't access because we were banned, or for some other reason.

Attributes:

Name Type Required Description
broadcast Bool Optional Is this a channel
megagroup Bool Optional Is this a supergroup
id int Yes Channel ID
access_hash long Yes Access hash
title string Yes Title

Type: Chat

Example:

$channelForbidden = ['_' => 'channelForbidden', 'broadcast' => Bool, 'megagroup' => Bool, 'id' => int, 'access_hash' => long, 'title' => 'string'];

Or, if you're into Lua:

channelForbidden={_='channelForbidden', broadcast=Bool, megagroup=Bool, id=int, access_hash=long, title='string'}