39 lines
576 B
Markdown
39 lines
576 B
Markdown
|
---
|
||
|
title: statsURL
|
||
|
description: Stats URL
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: statsURL
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Stats URL
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|url|[string](../types/string.md) | Yes|URL|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [StatsURL](../types/StatsURL.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$statsURL = ['_' => 'statsURL', 'url' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
statsURL={_='statsURL', url='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|