Skip to content

messages.setInlineGameScore

Layer 225

Constructor ID: 0x15ad9f64
Returns: Bool

Parameters

NameTypeDescription
edit_messagebool (flags.0, optional)
forcebool (flags.1, optional)
idInputBotInlineMessageID
user_idInputUser
scoreint32

Example

go
result, err := client.Raw(&tg.SetInlineGameScoreRequest{
    edit_message: false,
    force: false,
    id: nil, // InputBotInlineMessageID
    user_id: nil, // InputUser
    score: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.