36 lines
645 B
Markdown
36 lines
645 B
Markdown
|
---
|
||
|
title: updateChatParticipants
|
||
|
description: updateChatParticipants attributes, type and example
|
||
|
---
|
||
|
## Constructor: updateChatParticipants
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|participants|[ChatParticipants](../types/ChatParticipants.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Update](../types/Update.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$updateChatParticipants = ['_' => 'updateChatParticipants', 'participants' => ChatParticipants, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
updateChatParticipants={_='updateChatParticipants', participants=ChatParticipants, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|