Skip to content

messages.editInlineBotMessage

Layer 225

Constructor ID: 0x83557dba
Returns: Bool

Parameters

NameTypeDescription
no_webpagebool (flags.1, optional)
invert_mediabool (flags.16, optional)
idInputBotInlineMessageID
messagestring (flags.11, optional)
mediaInputMedia (flags.14, optional)
reply_markupReplyMarkup (flags.2, optional)
entities[]MessageEntity (flags.3, optional)

Example

go
result, err := client.Raw(&tg.EditInlineBotMessageRequest{
    no_webpage: false,
    invert_media: false,
    id: nil, // InputBotInlineMessageID
    message: "",
    media: nil, // InputMedia
    reply_markup: nil, // ReplyMarkup
    entities: nil,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.