MadelineProtoDocs/old_docs/API_docs_v62/constructors/inputMediaGame.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

43 lines
724 B
Markdown

---
title: inputMediaGame
description: inputMediaGame attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaGame
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|id|[InputGame](../types/InputGame.md) | Yes|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaGame = ['_' => 'inputMediaGame', 'id' => InputGame];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputMediaGame", "id": InputGame}
```
Or, if you're into Lua:
```lua
inputMediaGame={_='inputMediaGame', id=InputGame}
```