MadelineProto/old_docs/API_docs_v23/constructors/updateServiceNotification.md

39 lines
852 B
Markdown
Raw Normal View History

---
title: updateServiceNotification
description: updateServiceNotification attributes, type and example
---
## Constructor: updateServiceNotification
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|type|[string](../types/string.md) | Yes|
|message|[string](../types/string.md) | Yes|
|media|[MessageMedia](../types/MessageMedia.md) | Yes|
|popup|[Bool](../types/Bool.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
$updateServiceNotification = ['_' => 'updateServiceNotification', 'type' => string, 'message' => string, 'media' => MessageMedia, 'popup' => Bool, ];
```
Or, if you're into Lua:
```
updateServiceNotification={_='updateServiceNotification', type=string, message=string, media=MessageMedia, popup=Bool, }
```