1.4 KiB
1.4 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 |
---|---|---|---|
popup | Bool | Optional | Popup? |
inbox_date | int | Optional | Inbox date |
type | string | Yes | Type |
message | string | Yes | Message |
media | MessageMedia | Optional | Media |
entities | Array of MessageEntity | Yes | Entities |
Type: Update
Example:
$updateServiceNotification = ['_' => 'updateServiceNotification', 'popup' => Bool, 'inbox_date' => int, 'type' => 'string', 'message' => 'string', 'media' => MessageMedia, 'entities' => [MessageEntity, MessageEntity]];
PWRTelegram json-encoded version:
{"_": "updateServiceNotification", "popup": Bool, "inbox_date": int, "type": "string", "message": "string", "media": MessageMedia, "entities": [MessageEntity]}
Or, if you're into Lua:
updateServiceNotification={_='updateServiceNotification', popup=Bool, inbox_date=int, type='string', message='string', media=MessageMedia, entities={MessageEntity}}