Skip to content

messages.getBotCallbackAnswer

Layer 225

Constructor ID: 0x9342ca07
Returns: BotCallbackAnswer

Parameters

NameTypeDescription
gamebool (flags.1, optional)
peerInputPeer
msg_idint32
data[]byte (flags.0, optional)
passwordInputCheckPasswordSRP (flags.2, optional)

Example

go
result, err := client.Raw(&tg.GetBotCallbackAnswerRequest{
    game: false,
    peer: nil, // InputPeer
    msg_id: 0,
    data: nil,
    password: nil, // InputCheckPasswordSRP
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.