type Message struct {
MessageId int `json:"message_id"`
From User `json:"from"`
Chat Chat `json:"chat"`
Date int `json:"date"`
Text string `json:"text"`
}
type User struct {
Id int `json:"id"`
IsBot bool `json:"is_bot"`
FirstName string `json:"first_name"`
Username string `json:"username"`
LanguageCode string `json:"language_code"`
}