mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 17:47:21 +01:00
652 B
652 B
title | description |
---|---|
messageGame | Message with a game |
Constructor: messageGame
Message with a game
Attributes:
Name | Type | Required | Description |
---|---|---|---|
game | game | Yes | The game |
Type: MessageContent
Example:
$messageGame = ['_' => 'messageGame', 'game' => game];
PWRTelegram json-encoded version:
{"_": "messageGame", "game": game}
Or, if you're into Lua:
messageGame={_='messageGame', game=game}