2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: privacyValueDisallowUsers
|
|
|
|
description: privacyValueDisallowUsers attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: privacyValueDisallowUsers
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|users|Array of [int](../types/int.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PrivacyRule](../types/PrivacyRule.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-03-11 19:54:51 +01:00
|
|
|
$privacyValueDisallowUsers = ['_' => 'privacyValueDisallowUsers', 'users' => [int], ];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
privacyValueDisallowUsers={_='privacyValueDisallowUsers', users={int}, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|