PKGBUILD/pkg/types/temperature.go

13 lines
343 B
Go
Raw Normal View History

2019-02-28 18:48:25 +00:00
package types
import "time"
// Temperature ...
type Temperature struct {
TemperatureID string `json:"temperature_id"`
TemperatureValue float64 `json:"temperature_value,string"`
TemperatureDate time.Time `json:"temperature_date"`
SensorID string `json:"sensor_id"`
CreationDate time.Time `json:"creation_date"`
}