14 lines
231 B
Go
14 lines
231 B
Go
|
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"`
|
||
|
}
|