commons-go/sensorconfig/model/SensorConfig.go

12 lines
313 B
Go
Raw Normal View History

2018-04-12 09:38:04 +00:00
package model
import "encoding/json"
type SensorConfig struct {
ID json.Number `json:"id,Number,omitempty"`
Target *Target `json:"target,omitempty"`
Schedule *Schedule `json:"schedule,omitempty"`
Crawler *Crawler `json:"crawler,omitempty"`
Items []Item `json:"items,omitempty"`
}