update.go 191 B

1234567
  1. package telegram
  2. type Update struct {
  3. UpdateID int64 `json:"update_id"`
  4. Message *Message `json:"message"`
  5. CallbackQuery *CallbackQuery `json:"callback_query"`
  6. }