MadelineProtoDocs/docs/API_docs/constructors/updateServiceNotification.md

1.2 KiB

title description image
updateServiceNotification Update service notification https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateServiceNotification

Back to constructors index

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]];

Or, if you're into Lua:

updateServiceNotification={_='updateServiceNotification', popup=Bool, inbox_date=int, type='string', message='string', media=MessageMedia, entities={MessageEntity}}