Add `Updated` and `UpdateAuthor` fields to `Comment`
parent
481e12aec6
commit
cde379f85b
12
comment.go
12
comment.go
|
@ -1,9 +1,11 @@
|
|||
package jiraclient
|
||||
|
||||
type Comment struct {
|
||||
Self string `json:"self"`
|
||||
Id string `json:"id"`
|
||||
Author User `json:"author"`
|
||||
Body string `json:"body"`
|
||||
Created Time `json:"created"`
|
||||
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"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue