MadelineProto/docs/TD_docs/constructors/gameHighScores.md

45 lines
792 B
Markdown
Raw Normal View History

---
title: gameHighScores
description: Contains list of game high scores
---
## Constructor: gameHighScores
[Back to constructors index](index.md)
Contains list of game high scores
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|scores|Array of [gameHighScore](../constructors/gameHighScore.md) | Yes|List of game high scores|
### Type: [GameHighScores](../types/GameHighScores.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$gameHighScores = ['_' => 'gameHighScores', 'scores' => [gameHighScore]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "gameHighScores", "scores": [gameHighScore]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
gameHighScores={_='gameHighScores', scores={gameHighScore}}
```