mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 19:27:21 +01:00
868 B
868 B
title | description |
---|---|
updateServiceNotification | updateServiceNotification attributes, type and example |
Constructor: updateServiceNotification
Attributes:
Name | Type | Required |
---|---|---|
type | string | Yes |
message_text | string | Yes |
media | MessageMedia | Yes |
popup | Bool | Yes |
Type: Update
Example:
$updateServiceNotification = ['_' => '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, }