messages.editInlineBotMessage
Layer 225
Constructor ID: 0x83557dba
Returns: Bool
Parameters
| Name | Type | Description |
|---|---|---|
no_webpage | bool (flags.1, optional) | |
invert_media | bool (flags.16, optional) | |
id | InputBotInlineMessageID | |
message | string (flags.11, optional) | |
media | InputMedia (flags.14, optional) | |
reply_markup | ReplyMarkup (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)