2017-01-25 23:16:22 +01:00
|
|
|
---
|
|
|
|
title: account.privacyRules
|
|
|
|
description: account_privacyRules attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: account.privacyRules
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
2017-03-11 19:54:51 +01:00
|
|
|
|rules|Array of [PrivacyRule](../types/PrivacyRule.md) | Yes|
|
|
|
|
|users|Array of [User](../types/User.md) | Yes|
|
2017-01-25 23:16:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [account\_PrivacyRules](../types/account_PrivacyRules.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-03-11 19:54:51 +01:00
|
|
|
$account_privacyRules = ['_' => 'account.privacyRules', 'rules' => [PrivacyRule], 'users' => [User], ];
|
2017-01-25 23:16:22 +01:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"account.privacyRules","rules":["PrivacyRule"],"users":["User"]}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
account_privacyRules={_='account.privacyRules', rules={PrivacyRule}, users={User}, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|