Fix typo on callback query structure
This commit is contained in:
parent
27464fcee7
commit
bcfc5c2d64
1 changed files with 1 additions and 1 deletions
2
api.go
2
api.go
|
@ -227,7 +227,7 @@ type APIInputMediaPhoto struct {
|
||||||
// APICallbackQuery is a callback query triggered by an inline button
|
// APICallbackQuery is a callback query triggered by an inline button
|
||||||
type APICallbackQuery struct {
|
type APICallbackQuery struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
User APIAudio `json:"from"`
|
User APIUser `json:"from"`
|
||||||
Message *APIMessage `json:"message,omitempty"`
|
Message *APIMessage `json:"message,omitempty"`
|
||||||
InlineID *string `json:"inline_message_id,omitempty"`
|
InlineID *string `json:"inline_message_id,omitempty"`
|
||||||
ChatID string `json:"chat_instance"`
|
ChatID string `json:"chat_instance"`
|
||||||
|
|
Loading…
Reference in a new issue