MadelineProtoDocs/docs/API_docs/constructors/updateGroupCallParticipants.md
2024-05-01 14:53:46 +02:00

32 lines
1011 B
Markdown

---
title: "updateGroupCallParticipants"
description: "The participant list of a certain group call has changed"
nav_exclude: true
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateGroupCallParticipants
[Back to constructors index](/API_docs/constructors/index.html)
The participant list of a certain group call has changed
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|call|[InputGroupCall](/API_docs/types/InputGroupCall.html) | Yes|Group call|
|participants|Array of [GroupCallParticipant](/API_docs/types/GroupCallParticipant.html) | Yes|New participant list|
|version|[int](/API_docs/types/int.html) | Yes|Version|
### Type: [Update](/API_docs/types/Update.html)
### Example:
```
$updateGroupCallParticipants = ['_' => 'updateGroupCallParticipants', 'call' => InputGroupCall, 'participants' => [GroupCallParticipant, GroupCallParticipant], 'version' => int];
```