Add `Updated` and `UpdateAuthor` fields to `Comment`

main
Jasper Bok 2023-07-14 18:02:20 +02:00
parent 481e12aec6
commit cde379f85b
1 changed files with 7 additions and 5 deletions

View File

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