MadelineProtoDocs/old_docs/API_docs_v43/constructors/statsGraphError.md

39 lines
804 B
Markdown
Raw Permalink Normal View History

2020-09-12 12:47:38 +02:00
---
title: statsGraphError
description: An error occurred while generating the [statistics graph](https://core.telegram.org/api/stats)
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: statsGraphError
[Back to constructors index](index.md)
An error occurred while generating the [statistics graph](https://core.telegram.org/api/stats)
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|error|[string](../types/string.md) | Yes|The error|
### Type: [StatsGraph](../types/StatsGraph.md)
### Example:
```php
$statsGraphError = ['_' => 'statsGraphError', 'error' => 'string'];
```
Or, if you're into Lua:
```lua
statsGraphError={_='statsGraphError', error='string'}
```