Codebase list golang-github-nlopes-slack / dc3fb582-20b3-497b-b994-a17903caf344/main comment.go
dc3fb582-20b3-497b-b994-a17903caf344/main

Tree @dc3fb582-20b3-497b-b994-a17903caf344/main (Download .tar.gz)

comment.go @dc3fb582-20b3-497b-b994-a17903caf344/mainraw · history · blame

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