Layer 220
constructor
inputBotInlineResultGame#4fa417f2 id:string short_name:string send_message:InputBotInlineMessage = InputBotInlineResult;

Parameters

Name Type Description
Id string Result ID
ShortName string Game short name
SendMessage InputBotInlineMessage Message to send when the result is selected

Gogram Example

// Creating InputBotInlineResultGame constructor
obj := &tg.InputBotInlineResultGame{
    Id: "...",
    ShortName: "...",
    SendMessage: &tg.InputBotInlineMessageText{},
}