45 lines
865 B
Markdown
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'}
|
|
|
|
```
|
|
|
|
|