Interface InputInlineQueryResultGame

Represents a game. Subtype of InputInlineQueryResult.

interface InputInlineQueryResultGame {
    @type: "inputInlineQueryResultGame";
    game_short_name: string;
    id: string;
    reply_markup: ReplyMarkup;
}

Properties

@type: "inputInlineQueryResultGame"
game_short_name: string

Short name of the game.

id: string

Unique identifier of the query result.

reply_markup: ReplyMarkup

The message reply markup; pass null if none. Must be of type replyMarkupInlineKeyboard or null.