MadelineProto/docs/TD_docs/constructors/updateChatReadInbox.md

47 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: updateChatReadInbox
description: Some incoming messages was read
---
## Constructor: updateChatReadInbox
[Back to constructors index](index.md)
Some incoming messages was read
### Attributes:
| Name | Type | Required | Description |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|-------------|
|chat\_id|[long](../types/long.md) | Yes|Chat identifier|
|last\_read\_inbox\_message\_id|[long](../types/long.md) | Yes|Identifier of last read incoming message|
|unread\_count|[int](../types/int.md) | Yes|Number of unread messages left in chat|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateChatReadInbox = ['_' => 'updateChatReadInbox', 'chat_id' => long, 'last_read_inbox_message_id' => long, 'unread_count' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateChatReadInbox", "chat_id": long, "last_read_inbox_message_id": long, "unread_count": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateChatReadInbox={_='updateChatReadInbox', chat_id=long, last_read_inbox_message_id=long, unread_count=int}
```