38 lines
748 B
Markdown
38 lines
748 B
Markdown
---
|
|
title: statsGroupTopInviter
|
|
description: statsGroupTopInviter attributes, type and example
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: statsGroupTopInviter
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|---------------|----------|
|
|
|user\_id|[int](../types/int.md) | Yes|
|
|
|invitations|[int](../types/int.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [StatsGroupTopInviter](../types/StatsGroupTopInviter.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$statsGroupTopInviter = ['_' => 'statsGroupTopInviter', 'user_id' => int, 'invitations' => int];
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
statsGroupTopInviter={_='statsGroupTopInviter', user_id=int, invitations=int}
|
|
|
|
```
|
|
|
|
|