MadelineProtoDocs/old_docs/API_docs_v46/constructors/inputPrivacyValueAllowUsers.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

43 lines
916 B
Markdown

---
title: inputPrivacyValueAllowUsers
description: inputPrivacyValueAllowUsers attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPrivacyValueAllowUsers
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|users|Array of [Username, chat ID, Update, Message or InputUser](../types/InputUser.md) | Yes|
### Type: [InputPrivacyRule](../types/InputPrivacyRule.md)
### Example:
```php
$inputPrivacyValueAllowUsers = ['_' => 'inputPrivacyValueAllowUsers', 'users' => [InputUser, InputUser]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputPrivacyValueAllowUsers", "users": [InputUser]}
```
Or, if you're into Lua:
```lua
inputPrivacyValueAllowUsers={_='inputPrivacyValueAllowUsers', users={InputUser}}
```