MadelineProto/docs/TD_docs/constructors/privacyRuleAllowUsers.md

38 lines
660 B
Markdown
Raw Normal View History

---
title: privacyRuleAllowUsers
description: Rule to allow specified users
---
## Constructor: privacyRuleAllowUsers
[Back to constructors index](index.md)
Rule to allow specified users
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|user\_ids|Array of [int](../constructors/int.md) | Yes|User identifiers|
### Type: [PrivacyRule](../types/PrivacyRule.md)
### Example:
```
$privacyRuleAllowUsers = ['_' => 'privacyRuleAllowUsers', 'user_ids' => [int], ];
```
Or, if you're into Lua:
```
privacyRuleAllowUsers={_='privacyRuleAllowUsers', user_ids={int}, }
```