956 B
956 B
title | description |
---|---|
game | game attributes, type and example |
Constructor: game
Attributes:
Name | Type | Required |
---|---|---|
id | long | Yes |
access_hash | long | Yes |
short_name | string | Yes |
title | string | Yes |
description | string | Yes |
photo | Photo | Yes |
document | Document | Optional |
Type: Game
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, }