1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
updateServiceNotification | Update service notification | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateServiceNotification
Update service notification
Attributes:
Name | Type | Required | Description |
---|---|---|---|
type | string | Yes | Type |
message_text | string | Yes | Message text |
media | MessageMedia | Optional | Media |
popup | Bool | Yes | Popup? |
Type: Update
Example:
$updateServiceNotification = ['_' => 'updateServiceNotification', 'type' => 'string', 'message_text' => 'string', 'media' => MessageMedia, 'popup' => Bool];
PWRTelegram json-encoded version:
{"_": "updateServiceNotification", "type": "string", "message_text": "string", "media": MessageMedia, "popup": Bool}
Or, if you're into Lua:
updateServiceNotification={_='updateServiceNotification', type='string', message_text='string', media=MessageMedia, popup=Bool}