From cde379f85b20b1dea4bdb2d30f09f501bc6fe4fc Mon Sep 17 00:00:00 2001 From: Jasper Bok Date: Fri, 14 Jul 2023 18:02:20 +0200 Subject: [PATCH] Add `Updated` and `UpdateAuthor` fields to `Comment` --- comment.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/comment.go b/comment.go index 8729116..532c9f5 100644 --- a/comment.go +++ b/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"` }