CallbackQuery represents an incoming callback query from a callback button in an inline keyboard (PUBLIC, PROTECTED, PRIVATE).
| 3 | // CallbackQuery represents an incoming callback query from a callback button in |
| 4 | // an inline keyboard (PUBLIC, PROTECTED, PRIVATE). |
| 5 | type CallbackQuery struct { |
| 6 | ID string `json:"id"` |
| 7 | From User `json:"from"` |
| 8 | Message *Message `json:"message"` |
| 9 | InlineMessageID string `json:"inline_message_id"` |
| 10 | ChatInstance string `json:"chat_instance"` |
| 11 | Data string `json:"data"` |
| 12 | GameShortName string `json:"game_short_name"` |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected