github.com/tada-team/tdproto@v1.51.57/tdapi/hotmessages.go (about) 1 package tdapi 2 3 import "github.com/tada-team/tdproto" 4 5 // All-in-one response with all messages info for fast chat rendering 6 type Hotmessages struct { 7 // chat information 8 Chat tdproto.Chat `json:"chat"` 9 10 // Messages list 11 Messages []tdproto.Message `json:"messages"` 12 13 // Contacts list 14 Contacts []tdproto.Contact `json:"contacts"` 15 }