MadelineProtoDocs/old_docs/API_docs_v81/constructors/channelForbidden.md

1.2 KiB

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

Constructor: channelForbidden

Back to constructors index

Attributes:

Name Type Required
broadcast Bool Optional
megagroup Bool Optional
id int Yes
access_hash long Yes
title string Yes
until_date int Optional

Type: Chat

Example:

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

PWRTelegram json-encoded version:

{"_": "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}