MadelineProtoDocs/docs/API_docs/constructors/inputPrivacyValueAllowChatP...

39 lines
855 B
Markdown
Raw Normal View History

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