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