1.3 KiB
1.3 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
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 |
until_date | int | Optional | The ban is valid until the specified date |
Type: Chat
Example:
$channelForbidden = ['_' => 'channelForbidden', 'broadcast' => Bool, 'megagroup' => Bool, 'id' => int, 'access_hash' => long, 'title' => 'string', 'until_date' => int];
Or, if you're into Lua:
channelForbidden={_='channelForbidden', broadcast=Bool, megagroup=Bool, id=int, access_hash=long, title='string', until_date=int}