MadelineProtoDocs/docs/API_docs/constructors/updateChatDefaultBannedRigh...

41 lines
1.1 KiB
Markdown
Raw Normal View History

2019-03-08 13:49:23 +01: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-03-08 13:49:23 +01: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-03-08 14:35:09 +01:00
2019-03-08 13:49:23 +01:00
### Attributes:
2019-03-08 14:35:09 +01:00
| 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-03-08 14:35:09 +01:00
|version|[int](../types/int.md) | Yes|Version|
2019-03-08 13:49:23 +01:00
### 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}
```