MadelineProtoDocs/old_docs/API_docs_v105/constructors/statsURL.md

39 lines
618 B
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +02:00
---
title: statsURL
2019-12-27 17:48:04 +01:00
description: URL with chat statistics
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: statsURL
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
URL with chat statistics
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|url|[string](../types/string.md) | Yes|Chat statistics|
2019-09-13 17:13:55 +02:00
### Type: [StatsURL](../types/StatsURL.md)
### Example:
```php
$statsURL = ['_' => 'statsURL', 'url' => 'string'];
```
Or, if you're into Lua:
```lua
statsURL={_='statsURL', url='string'}
```