mirror of
https://github.com/42wim/matterbridge
synced 2024-11-05 12:00:27 +00:00
11 lines
330 B
Go
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"`
|
||
|
}
|