34 lines
701 B
Markdown
34 lines
701 B
Markdown
|
---
|
||
|
title: privacyKeyForwards
|
||
|
description: Whether messages forwarded from the user will be [anonymously forwarded](https://telegram.org/blog/unsend-privacy-emoji#anonymous-forwarding)
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: privacyKeyForwards
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Whether messages forwarded from the user will be [anonymously forwarded](https://telegram.org/blog/unsend-privacy-emoji#anonymous-forwarding)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [PrivacyKey](../types/PrivacyKey.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$privacyKeyForwards = ['_' => 'privacyKeyForwards'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
privacyKeyForwards={_='privacyKeyForwards'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|