mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 11:46:07 +08:00
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"`
|
||
|
}
|