Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. type UpdateMsg struct {
  2. UpdateID int64 `json:"update_id"`
  3. Message struct {
  4. Text string `json:"text"`
  5. From struct {
  6. ChatID int64 `json:"id"`
  7. FirstName string `json:"first_name"`
  8. LastName string `json:"last_name"`
  9. Username string `json:"username"`
  10. } `json:"from"`
  11. Chat struct {
  12. ChatId int64 `json:"id"`
  13. Title string `json:"title"`
  14. Type string `json:"type"`
  15. } `json:"chat"`
  16. } `json:"message"`
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement