MadelineProtoDocs/docs/API_docs/constructors/messageInteractionCounters.md

39 lines
854 B
Markdown
Raw Normal View History

2020-04-03 14:11:09 +02:00
---
title: messageInteractionCounters
description: messageInteractionCounters attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageInteractionCounters
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|msg\_id|[int](../types/int.md) | Yes|
|views|[int](../types/int.md) | Yes|
|forwards|[int](../types/int.md) | Yes|
### Type: [MessageInteractionCounters](../types/MessageInteractionCounters.md)
### Example:
```php
$messageInteractionCounters = ['_' => 'messageInteractionCounters', 'msg_id' => int, 'views' => int, 'forwards' => int];
```
Or, if you're into Lua:
```lua
messageInteractionCounters={_='messageInteractionCounters', msg_id=int, views=int, forwards=int}
```