mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
495 B
Go
14 lines
495 B
Go
package telegram
|
|
|
|
// CallbackQuery represents an incoming callback query from a callback button in
|
|
// an inline keyboard (PUBLIC, PROTECTED, PRIVATE).
|
|
type CallbackQuery struct {
|
|
ID string `json:"id"`
|
|
From User `json:"from"`
|
|
Message *Message `json:"message"`
|
|
InlineMessageID string `json:"inline_message_id"`
|
|
ChatInstance string `json:"chat_instance"`
|
|
Data string `json:"data"`
|
|
GameShortName string `json:"game_short_name"`
|
|
}
|