MadelineProto/docs/TD_docs/constructors/updateMessageViews.md

47 lines
966 B
Markdown
Raw Normal View History

---
title: updateMessageViews
description: View count of the message has changed
---
## Constructor: updateMessageViews
[Back to constructors index](index.md)
View count of the message has changed
### Attributes:
| Name | Type | Required | Description |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|-------------|
|chat\_id|[long](../types/long.md) | Yes|Chat identifier|
|message\_id|[long](../types/long.md) | Yes|Message identifier|
|views|[int](../types/int.md) | Yes|New value of view count|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateMessageViews = ['_' => 'updateMessageViews', 'chat_id' => long, 'message_id' => long, 'views' => int];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateMessageViews", "chat_id": long, "message_id": long, "views": int}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateMessageViews={_='updateMessageViews', chat_id=long, message_id=long, views=int}
```