blob: 7d1c0d4eb2e2ad3c4eb4ccc02c9aed2c54aa8329 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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"`
}
|