0
0
mirror of https://github.com/crazy-max/diun.git synced 2025-01-03 08:08:34 +00:00
crazy-max_diun/vendor/github.com/nlopes/slack/comment.go
2024-12-14 22:30:21 +01:00

11 lines
330 B
Go

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