MadelineProtoDocs/old_docs/API_docs_v102/constructors/inputPeerNotifySettings.md

42 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2019-06-24 15:45:02 +02:00
---
title: inputPeerNotifySettings
2019-12-27 17:48:04 +01:00
description: Notification settings.
2019-06-24 15:45:02 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPeerNotifySettings
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Notification settings.
2019-06-24 15:45:02 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|show\_previews|[Bool](../types/Bool.md) | Optional|If the text of the message shall be displayed in notification|
|silent|[Bool](../types/Bool.md) | Optional|Peer was muted?|
|mute\_until|[int](../types/int.md) | Optional|Date until which all notifications shall be switched off|
|sound|[string](../types/string.md) | Optional|Name of an audio file for notification|
2019-06-24 15:45:02 +02:00
### Type: [InputPeerNotifySettings](../types/InputPeerNotifySettings.md)
### Example:
```php
$inputPeerNotifySettings = ['_' => 'inputPeerNotifySettings', 'show_previews' => Bool, 'silent' => Bool, 'mute_until' => int, 'sound' => 'string'];
```
Or, if you're into Lua:
```lua
inputPeerNotifySettings={_='inputPeerNotifySettings', show_previews=Bool, silent=Bool, mute_until=int, sound='string'}
```