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

46 lines
1.1 KiB
Markdown

---
title: channels.channelParticipant
description: Channel participant
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channels.channelParticipant
[Back to constructors index](index.md)
Channel participant
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|participant|[ChannelParticipant](../types/ChannelParticipant.md) | Yes|Participant|
|users|Array of [User](../types/User.md) | Yes|Users|
### Type: [channels\_ChannelParticipant](../types/channels_ChannelParticipant.md)
### Example:
```php
$channels_channelParticipant = ['_' => 'channels.channelParticipant', 'participant' => ChannelParticipant, 'users' => [User, User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "channels.channelParticipant", "participant": ChannelParticipant, "users": [User]}
```
Or, if you're into Lua:
```lua
channels_channelParticipant={_='channels.channelParticipant', participant=ChannelParticipant, users={User}}
```