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