MadelineProtoDocs/old_docs/API_docs_v105/constructors/channels_channelParticipants.md
2019-09-13 17:13:55 +02:00

41 lines
1.0 KiB
Markdown

---
title: channels.channelParticipants
description: Channel participants
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channels.channelParticipants
[Back to constructors index](index.md)
Channel participants
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|count|[int](../types/int.md) | Yes|Count|
|participants|Array of [ChannelParticipant](../types/ChannelParticipant.md) | Yes|Participants|
|users|Array of [User](../types/User.md) | Yes|Users|
### Type: [channels\_ChannelParticipants](../types/channels_ChannelParticipants.md)
### Example:
```php
$channels_channelParticipants = ['_' => 'channels.channelParticipants', 'count' => int, 'participants' => [ChannelParticipant, ChannelParticipant], 'users' => [User, User]];
```
Or, if you're into Lua:
```lua
channels_channelParticipants={_='channels.channelParticipants', count=int, participants={ChannelParticipant}, users={User}}
```