MadelineProtoDocs/old_docs/API_docs_v102/constructors/receivedNotifyMessage.md

39 lines
806 B
Markdown
Raw Permalink Normal View History

2019-06-24 15:45:02 +02:00
---
title: receivedNotifyMessage
2019-12-27 17:48:04 +01:00
description: Message ID, for which PUSH-notifications were cancelled.
2019-06-24 15:45:02 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: receivedNotifyMessage
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Message ID, for which PUSH-notifications were cancelled.
2019-06-24 15:45:02 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|id|[int](../types/int.md) | Yes|Message ID, for which PUSH-notifications were canceled|
2019-06-24 15:45:02 +02:00
### Type: [ReceivedNotifyMessage](../types/ReceivedNotifyMessage.md)
### Example:
```php
$receivedNotifyMessage = ['_' => 'receivedNotifyMessage', 'id' => int];
```
Or, if you're into Lua:
```lua
receivedNotifyMessage={_='receivedNotifyMessage', id=int}
```