mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-04 02:28:31 +01:00
50 lines
4.9 KiB
Markdown
50 lines
4.9 KiB
Markdown
|
---
|
||
|
title: "chatBannedRights"
|
||
|
description: "Represents the rights of a normal user in a supergroup/channel/chat. In this case, the flags are inverted: if set, a flag does not allow a user to do X."
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: chatBannedRights
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Represents the rights of a normal user in a [supergroup/channel/chat](https://core.telegram.org/api/channel). In this case, the flags are inverted: if set, a flag **does not allow** a user to do X.
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|view\_messages|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to view messages in a [supergroup/channel/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_messages|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send messages in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_media|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send any media in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_stickers|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send stickers in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_gifs|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send gifs in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_games|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send games in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_inline|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to use inline bots in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|embed\_links|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to embed links in the messages of a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|send\_polls|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send polls in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|change\_info|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow any user to change the description of a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|invite\_users|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow any user to invite users in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|pin\_messages|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow any user to pin messages in a [supergroup/chat](https://core.telegram.org/api/channel)|
|
||
|
|manage\_topics|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow any user to create, delete or modify [forum topics »](https://core.telegram.org/api/forum#forum-topics).|
|
||
|
|send\_photos|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send photos in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|send\_videos|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send videos in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|send\_roundvideos|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send round videos in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|send\_audios|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send audio files in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|send\_voices|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send voice messages in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|send\_docs|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send documents in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|send\_plain|[Bool](/API_docs/types/Bool.html) | Optional|If set, does not allow a user to send text messages in a [supergroup/chat](https://core.telegram.org/api/channel).|
|
||
|
|until\_date|[int](/API_docs/types/int.html) | Yes|Validity of said permissions (it is considered forever any value less then 30 seconds or more then 366 days).|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [ChatBannedRights](/API_docs/types/ChatBannedRights.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$chatBannedRights = ['_' => 'chatBannedRights', 'view_messages' => Bool, 'send_messages' => Bool, 'send_media' => Bool, 'send_stickers' => Bool, 'send_gifs' => Bool, 'send_games' => Bool, 'send_inline' => Bool, 'embed_links' => Bool, 'send_polls' => Bool, 'change_info' => Bool, 'invite_users' => Bool, 'pin_messages' => Bool, 'manage_topics' => Bool, 'send_photos' => Bool, 'send_videos' => Bool, 'send_roundvideos' => Bool, 'send_audios' => Bool, 'send_voices' => Bool, 'send_docs' => Bool, 'send_plain' => Bool, 'until_date' => int];
|
||
|
```
|