mirror of https://github.com/grafana/grafana.git
16 lines
381 B
Go
16 lines
381 B
Go
|
package dtos
|
||
|
|
||
|
import "github.com/grafana/grafana/pkg/components/simplejson"
|
||
|
|
||
|
type Annotation struct {
|
||
|
AlertId int64 `json:"alertId"`
|
||
|
NewState string `json:"newState"`
|
||
|
PrevState string `json:"prevState"`
|
||
|
Time int64 `json:"time"`
|
||
|
Title string `json:"title"`
|
||
|
Text string `json:"text"`
|
||
|
Metric string `json:"metric"`
|
||
|
|
||
|
Data *simplejson.Json `json:"data"`
|
||
|
}
|