MadelineProtoDocs/old_docs/API_docs_v100/constructors/inputGameID.md

40 lines
810 B
Markdown
Raw Permalink Normal View History

2019-06-23 13:07:51 +02:00
---
title: inputGameID
2019-12-27 17:48:04 +01:00
description: Indicates an already sent game
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputGameID
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Indicates an already sent game
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:58:34 +01:00
|id|[long](../types/long.md) | Yes|Game ID from [Game](../types/Game.md) constructor|
|access\_hash|[long](../types/long.md) | Yes|Access hash from [Game](../types/Game.md) constructor|
2019-06-23 13:07:51 +02:00
### Type: [InputGame](../types/InputGame.md)
### Example:
```php
$inputGameID = ['_' => 'inputGameID', 'id' => long, 'access_hash' => long];
```
Or, if you're into Lua:
```lua
inputGameID={_='inputGameID', id=long, access_hash=long}
```