2018-07-12 20:24:55 +02:00
|
|
|
---
|
|
|
|
title: messageService
|
2018-12-26 02:56:50 +01:00
|
|
|
description: Message service
|
2018-07-12 20:24:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: messageService
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
Message service
|
|
|
|
|
2018-07-12 20:24:55 +02:00
|
|
|
### Attributes:
|
|
|
|
|
2018-12-26 02:56:50 +01:00
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|out|[Bool](../types/Bool.md) | Optional|Out?|
|
|
|
|
|mentioned|[Bool](../types/Bool.md) | Optional|Mentioned?|
|
|
|
|
|media\_unread|[Bool](../types/Bool.md) | Optional|Media unread?|
|
|
|
|
|silent|[Bool](../types/Bool.md) | Optional|Silent?|
|
|
|
|
|post|[Bool](../types/Bool.md) | Optional|Post?|
|
|
|
|
|id|[int](../types/int.md) | Yes|ID|
|
|
|
|
|from\_id|[int](../types/int.md) | Optional|From ID|
|
|
|
|
|to\_id|[Peer](../types/Peer.md) | Yes|To ID|
|
|
|
|
|reply\_to\_msg\_id|[int](../types/int.md) | Optional|Reply to msg ID|
|
|
|
|
|date|[int](../types/int.md) | Yes|Date|
|
|
|
|
|action|[MessageAction](../types/MessageAction.md) | Optional|Action|
|
2018-07-12 20:24:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [Message](../types/Message.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2018-07-12 20:24:55 +02:00
|
|
|
$messageService = ['_' => 'messageService', 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'post' => Bool, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'reply_to_msg_id' => int, 'date' => int, 'action' => MessageAction];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
Or, if you're into Lua:
|
2018-07-12 20:24:55 +02:00
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2018-07-12 20:24:55 +02:00
|
|
|
messageService={_='messageService', out=Bool, mentioned=Bool, media_unread=Bool, silent=Bool, post=Bool, id=int, from_id=int, to_id=Peer, reply_to_msg_id=int, date=int, action=MessageAction}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|