Documentation ¶ Index ¶ type Message type Request type Response Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Message ¶ type Message struct { Id int `json:"id"` ChatRoom string `json:"chatroom"` Sender string `json:"sender"` Body string `json:"body"` Created int64 `json:"created"` } type Request ¶ type Request struct { ChatRoom string Cursor int64 Limit int32 Reverse bool } type Response ¶ type Response struct { Messages []*Message HasMore *bool NextCursor *int64 } Source Files ¶ View all Source files message.go request.go response.go Click to show internal directories. Click to hide internal directories.