MadelineProtoDocs/old_docs/API_docs_v44/constructors/statsGroupTopPoster.md

39 lines
807 B
Markdown
Raw Normal View History

2020-10-01 18:05:42 +02:00
---
title: statsGroupTopPoster
description: statsGroupTopPoster attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: statsGroupTopPoster
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|user\_id|[int](../types/int.md) | Yes|
|messages|[int](../types/int.md) | Yes|
|avg\_chars|[int](../types/int.md) | Yes|
### Type: [StatsGroupTopPoster](../types/StatsGroupTopPoster.md)
### Example:
```php
$statsGroupTopPoster = ['_' => 'statsGroupTopPoster', 'user_id' => int, 'messages' => int, 'avg_chars' => int];
```
Or, if you're into Lua:
```lua
statsGroupTopPoster={_='statsGroupTopPoster', user_id=int, messages=int, avg_chars=int}
```