1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
peerNotifySettings | peerNotifySettings attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: peerNotifySettings
Attributes:
Name | Type | Required |
---|---|---|
mute_until | int | Yes |
sound | string | Yes |
show_previews | Bool | Yes |
events_mask | int | Yes |
Type: PeerNotifySettings
Example:
$peerNotifySettings = ['_' => 'peerNotifySettings', 'mute_until' => int, 'sound' => 'string', 'show_previews' => Bool, 'events_mask' => int];
PWRTelegram json-encoded version:
{"_": "peerNotifySettings", "mute_until": int, "sound": "string", "show_previews": Bool, "events_mask": int}
Or, if you're into Lua:
peerNotifySettings={_='peerNotifySettings', mute_until=int, sound='string', show_previews=Bool, events_mask=int}