MadelineProto/old_docs/API_docs_v38/constructors/inputPeerNotifySettings.md

46 lines
1.0 KiB
Markdown
Raw Normal View History

---
title: inputPeerNotifySettings
description: inputPeerNotifySettings attributes, type and example
---
## Constructor: inputPeerNotifySettings
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|mute\_until|[int](../types/int.md) | Yes|
|sound|[string](../types/string.md) | Yes|
|show\_previews|[Bool](../types/Bool.md) | Yes|
|events\_mask|[int](../types/int.md) | Yes|
### Type: [InputPeerNotifySettings](../types/InputPeerNotifySettings.md)
### Example:
```
$inputPeerNotifySettings = ['_' => 'inputPeerNotifySettings', 'mute_until' => int, 'sound' => string, 'show_previews' => Bool, 'events_mask' => int, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"inputPeerNotifySettings","mute_until":"int","sound":"string","show_previews":"Bool","events_mask":"int"}
```
Or, if you're into Lua:
```
inputPeerNotifySettings={_='inputPeerNotifySettings', mute_until=int, sound=string, show_previews=Bool, events_mask=int, }
```