1package slack
2
3// Comment contains all the information relative to a comment
4type Comment struct {
5	ID        string   `json:"id,omitempty"`
6	Created   JSONTime `json:"created,omitempty"`
7	Timestamp JSONTime `json:"timestamp,omitempty"`
8	User      string   `json:"user,omitempty"`
9	Comment   string   `json:"comment,omitempty"`
10}
11