MadelineProtoDocs/docs/API_docs/constructors/statsGraph.md

38 lines
687 B
Markdown
Raw Normal View History

2020-04-03 14:11:09 +02:00
---
title: statsGraph
description: statsGraph attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: statsGraph
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|json|[DataJSON](../types/DataJSON.md) | Yes|
|zoom\_token|[string](../types/string.md) | Optional|
### Type: [StatsGraph](../types/StatsGraph.md)
### Example:
```php
$statsGraph = ['_' => 'statsGraph', 'json' => DataJSON, 'zoom_token' => 'string'];
```
Or, if you're into Lua:
```lua
statsGraph={_='statsGraph', json=DataJSON, zoom_token='string'}
```