MadelineProto/old_docs/API_docs_v66/constructors/game.md
2017-06-30 15:36:33 +02:00

956 B

title description
game game attributes, type and example

Constructor: game

Back to constructors index

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, }