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 package jiraclient
type Comment struct { type Comment struct {
Self string `json:"self"` Self string `json:"self"`
Id string `json:"id"` Id string `json:"id"`
Author User `json:"author"` Author User `json:"author"`
Body string `json:"body"` UpdateAuthor User `json:"updateAuthor"`
Created Time `json:"created"` Body string `json:"body"`
Created Time `json:"created"`
Updated Time `json:"updated"`
} }