MadelineProto/old_docs/API_docs_v65/constructors/game.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

42 lines
956 B
Markdown

---
title: game
description: game attributes, type and example
---
## Constructor: game
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[long](../types/long.md) | Yes|
|access\_hash|[long](../types/long.md) | Yes|
|short\_name|[string](../types/string.md) | Yes|
|title|[string](../types/string.md) | Yes|
|description|[string](../types/string.md) | Yes|
|photo|[Photo](../types/Photo.md) | Yes|
|document|[Document](../types/Document.md) | Optional|
### Type: [Game](../types/Game.md)
### Example:
```
$game = ['_' => 'game', 'id' => long, 'access_hash' => long, 'short_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'document' => Document, ];
```
Or, if you're into Lua:
```
game={_='game', id=long, access_hash=long, short_name=string, title=string, description=string, photo=Photo, document=Document, }
```