2023-07-14 15:13:59 +00:00
|
|
|
package jiraclient
|
|
|
|
|
|
|
|
type Comment struct {
|
2023-07-14 16:02:20 +00:00
|
|
|
Self string `json:"self"`
|
|
|
|
Id string `json:"id"`
|
|
|
|
Author User `json:"author"`
|
|
|
|
UpdateAuthor User `json:"updateAuthor"`
|
|
|
|
Body string `json:"body"`
|
|
|
|
Created Time `json:"created"`
|
|
|
|
Updated Time `json:"updated"`
|
2023-07-14 15:13:59 +00:00
|
|
|
}
|