2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: peerNotifySettings
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Notification settings.
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: peerNotifySettings
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Notification settings.
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|show\_previews|[Bool](../types/Bool.md) | Optional|Display text in notifications|
|
|
|
|
|silent|[Bool](../types/Bool.md) | Optional|Mute peer?|
|
|
|
|
|mute\_until|[int](../types/int.md) | Optional|Mute all notifications until this date|
|
|
|
|
|sound|[string](../types/string.md) | Optional|Audio file name for notifications|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [PeerNotifySettings](../types/PeerNotifySettings.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$peerNotifySettings = ['_' => 'peerNotifySettings', 'show_previews' => Bool, 'silent' => Bool, 'mute_until' => int, 'sound' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
peerNotifySettings={_='peerNotifySettings', show_previews=Bool, silent=Bool, mute_until=int, sound='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|