MadelineProto/docs/API_docs/constructors/game.md

21 lines
701 B
Markdown
Raw Normal View History

## Constructor: game
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[long](../types/long.md) | Required|
|access\_hash|[long](../types/long.md) | Required|
|short\_name|[string](../types/string.md) | Required|
|title|[string](../types/string.md) | Required|
|description|[string](../types/string.md) | Required|
|photo|[Photo](../types/Photo.md) | Required|
|document|[Document](../types/Document.md) | Optional|
2016-12-19 18:35:27 +01:00
### Type:
2016-12-19 18:35:27 +01:00
[Game](../types/Game.md)
### Example:
```
2016-12-19 17:48:27 +01:00
$game = ['_' => game', 'id' => long, 'access_hash' => long, 'short_name' => string, 'title' => string, 'description' => string, 'photo' => Photo, 'document' => Document, ];
```