MadelineProtoDocs/old_docs/API_docs_v105/constructors/updateChatDefaultBannedRights.md

41 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +02:00
---
title: updateChatDefaultBannedRights
2019-12-27 17:48:04 +01:00
description: Default banned rights in a [normal chat](https://core.telegram.org/api/channel) were updated
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateChatDefaultBannedRights
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Default banned rights in a [normal chat](https://core.telegram.org/api/channel) were updated
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|peer|[Peer](../types/Peer.md) | Yes|The chat|
|default\_banned\_rights|[ChatBannedRights](../types/ChatBannedRights.md) | Yes|New default banned rights|
2019-09-13 17:13:55 +02:00
|version|[int](../types/int.md) | Yes|Version|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateChatDefaultBannedRights = ['_' => 'updateChatDefaultBannedRights', 'peer' => Peer, 'default_banned_rights' => ChatBannedRights, 'version' => int];
```
Or, if you're into Lua:
```lua
updateChatDefaultBannedRights={_='updateChatDefaultBannedRights', peer=Peer, default_banned_rights=ChatBannedRights, version=int}
```