MadelineProtoDocs/docs/API_docs/constructors/channelParticipantsBanned.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
865 B
Markdown

---
title: channelParticipantsBanned
description: Channel participants banned
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelParticipantsBanned
[Back to constructors index](index.md)
Channel participants banned
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|q|[string](../types/string.md) | Yes|Query|
### Type: [ChannelParticipantsFilter](../types/ChannelParticipantsFilter.md)
### Example:
```php
$channelParticipantsBanned = ['_' => 'channelParticipantsBanned', 'q' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "channelParticipantsBanned", "q": "string"}
```
Or, if you're into Lua:
```lua
channelParticipantsBanned={_='channelParticipantsBanned', q='string'}
```