2017-06-30 15:36:33 +02:00
|
|
|
---
|
|
|
|
title: channelBannedRights
|
|
|
|
description: channelBannedRights attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: channelBannedRights
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-06-30 15:36:33 +02:00
|
|
|
|view\_messages|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|send\_messages|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|send\_media|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|send\_stickers|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|send\_gifs|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|send\_games|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|send\_inline|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|embed\_links|[Bool](../types/Bool.md) | Optional|
|
|
|
|
|until\_date|[int](../types/int.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [ChannelBannedRights](../types/ChannelBannedRights.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$channelBannedRights = ['_' => 'channelBannedRights', 'view_messages' => Bool, 'send_messages' => Bool, 'send_media' => Bool, 'send_stickers' => Bool, 'send_gifs' => Bool, 'send_games' => Bool, 'send_inline' => Bool, 'embed_links' => Bool, 'until_date' => int];
|
2017-06-30 15:36:33 +02:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "channelBannedRights", "view_messages": Bool, "send_messages": Bool, "send_media": Bool, "send_stickers": Bool, "send_gifs": Bool, "send_games": Bool, "send_inline": Bool, "embed_links": Bool, "until_date": int}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-06-30 15:36:33 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
channelBannedRights={_='channelBannedRights', view_messages=Bool, send_messages=Bool, send_media=Bool, send_stickers=Bool, send_gifs=Bool, send_games=Bool, send_inline=Bool, embed_links=Bool, until_date=int}
|
2017-06-30 15:36:33 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|