8 lines
133 B
Go
8 lines
133 B
Go
|
package sensorconfig
|
||
|
|
||
|
import "encoding/json"
|
||
|
|
||
|
type SensorConfigSchedule struct {
|
||
|
Interval json.Number `json:"interval,omitempty"`
|
||
|
}
|