MadelineProtoDocs/docs/API_docs/constructors/chatForbidden.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

798 B

title description image
chatForbidden Chat forbidden https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: chatForbidden

Back to constructors index

Chat forbidden

Attributes:

Name Type Required Description
id int Yes ID
title string Yes Title

Type: Chat

Example:

$chatForbidden = ['_' => 'chatForbidden', 'id' => int, 'title' => 'string'];

PWRTelegram json-encoded version:

{"_": "chatForbidden", "id": int, "title": "string"}

Or, if you're into Lua:

chatForbidden={_='chatForbidden', id=int, title='string'}