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.
12 lines
362 B
Go
12 lines
362 B
Go
package telegram
|
|
|
|
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"`
|
|
}
|