16 lines
269 B
Go
16 lines
269 B
Go
|
package data
|
||
|
|
||
|
type AnnotationsResponse struct {
|
||
|
Response struct {
|
||
|
Referent struct {
|
||
|
Annotations []Annotation `json:"annotations"`
|
||
|
} `json:"referent"`
|
||
|
} `json:"response"`
|
||
|
}
|
||
|
|
||
|
type Annotation struct {
|
||
|
Body struct {
|
||
|
Html string `json:"html"`
|
||
|
} `json:"body"`
|
||
|
}
|