1.0 KiB
1.0 KiB
title | description |
---|---|
inputPeerNotifySettings | inputPeerNotifySettings attributes, type and example |
Constructor: inputPeerNotifySettings
Attributes:
Name | Type | Required |
---|---|---|
mute_until | int | Yes |
sound | string | Yes |
show_previews | Bool | Yes |
events_mask | int | Yes |
Type: InputPeerNotifySettings
Example:
$inputPeerNotifySettings = ['_' => 'inputPeerNotifySettings', 'mute_until' => int, 'sound' => 'string', 'show_previews' => Bool, 'events_mask' => int];
PWRTelegram 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}