Add the `Comment` type

main
Jasper Bok 2023-07-14 17:13:59 +02:00
parent 1019668304
commit 29d4547646
1 changed files with 13 additions and 0 deletions

13
comment.go 100644
View File

@ -0,0 +1,13 @@
package jiraclient
import (
"time"
)
type Comment struct {
Self string `json:"self"`
Id string `json:"id"`
Author User `json:"author"`
Body string `json:"body"`
Created time.Time `json:created"`
}