jiraclient/comment.go

12 lines
303 B
Go

package jiraclient
type Comment struct {
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"`
}