5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 16:02:31 +00:00
matterbridge/vendor/github.com/nlopes/slack/comment.go

11 lines
330 B
Go
Raw Normal View History

2016-09-05 14:34:37 +00:00
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"`
}