5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 21:46:57 +00:00
matterbridge/vendor/github.com/nlopes/slack/comment.go
2016-09-05 16:34:37 +02:00

11 lines
330 B
Go

package slack
// Comment contains all the information relative to a comment
type Comment struct {
ID string `json:"id,omitempty"`
Created JSONTime `json:"created,omitempty"`
Timestamp JSONTime `json:"timestamp,omitempty"`
User string `json:"user,omitempty"`
Comment string `json:"comment,omitempty"`
}