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

47 lines
1.0 KiB
Markdown

---
title: chatParticipants
description: Chat participants
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: chatParticipants
[Back to constructors index](index.md)
Chat participants
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int](../types/int.md) | Yes|Chat ID|
|participants|Array of [ChatParticipant](../types/ChatParticipant.md) | Yes|Participants|
|version|[int](../types/int.md) | Yes|Version|
### Type: [ChatParticipants](../types/ChatParticipants.md)
### Example:
```php
$chatParticipants = ['_' => 'chatParticipants', 'chat_id' => int, 'participants' => [ChatParticipant, ChatParticipant], 'version' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatParticipants", "chat_id": int, "participants": [ChatParticipant], "version": int}
```
Or, if you're into Lua:
```lua
chatParticipants={_='chatParticipants', chat_id=int, participants={ChatParticipant}, version=int}
```