Codebase list golang-github-nlopes-slack / lintian-fixes/main comment.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

comment.go @lintian-fixes/main

74f694f
 
 
 
 
 
 
 
 
 
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"`
}