jiraclient/comment.go

14 lines
231 B
Go
Raw Normal View History

2023-07-14 15:13:59 +00:00
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"`
}