MadelineProtoDocs/old_docs/API_docs_v34/constructors/privacyValueAllowChatParticipants.md

39 lines
810 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: privacyValueAllowChatParticipants
description: Allow all participants of certain chats
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: privacyValueAllowChatParticipants
[Back to constructors index](index.md)
Allow all participants of certain chats
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chats|Array of [int](../types/int.md) | Yes|Allowed chats|
### Type: [PrivacyRule](../types/PrivacyRule.md)
### Example:
```php
$privacyValueAllowChatParticipants = ['_' => 'privacyValueAllowChatParticipants', 'chats' => [int, int]];
```
Or, if you're into Lua:
```lua
privacyValueAllowChatParticipants={_='privacyValueAllowChatParticipants', chats={int}}
```