mirror of
https://github.com/usememos/memos.git
synced 2025-01-02 11:12:27 +03: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"`
|
||
|
}
|