MadelineProtoDocs/old_docs/API_docs_v105/constructors/channels_channelParticipant.md

40 lines
956 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: channels.channelParticipant
2019-12-27 17:48:04 +01:00
description: Represents a channel participant
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channels.channelParticipant
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Represents a channel participant
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|participant|[ChannelParticipant](../types/ChannelParticipant.md) | Yes|The channel participant|
2019-09-13 17:13:55 +02:00
|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]];
```
Or, if you're into Lua:
```lua
channels_channelParticipant={_='channels.channelParticipant', participant=ChannelParticipant, users={User}}
```