MadelineProtoDocs/docs/API_docs/constructors/statsURL.md

45 lines
682 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
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'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "statsURL", "url": "string"}
```
Or, if you're into Lua:
```lua
statsURL={_='statsURL', url='string'}
```