mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 15:14:39 +01:00
697 B
697 B
title | description |
---|---|
chatForbidden | chatForbidden attributes, type and example |
Constructor: chatForbidden
Attributes:
Name | Type | Required |
---|---|---|
id | int | Yes |
title | string | Yes |
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'}