Sometimes, the last seen time is empty
This commit is contained in:
parent
c6b538380c
commit
15145d1f58
26
lights.go
26
lights.go
@ -40,19 +40,19 @@ type (
|
|||||||
}
|
}
|
||||||
|
|
||||||
Light struct {
|
Light struct {
|
||||||
Id string `json:"id"`
|
Id string `json:"id"`
|
||||||
UUID string `json:"uuid"`
|
UUID string `json:"uuid"`
|
||||||
Label string `json:"label"`
|
Label string `json:"label"`
|
||||||
Connected bool `json:"connected"`
|
Connected bool `json:"connected"`
|
||||||
Power string `json:"power"`
|
Power string `json:"power"`
|
||||||
Color HSBKColor `json:"color"`
|
Color HSBKColor `json:"color"`
|
||||||
Brightness float64 `json:"brightness"`
|
Brightness float64 `json:"brightness"`
|
||||||
Effect string `json:"effect"`
|
Effect string `json:"effect"`
|
||||||
Group Selector `json:"group"`
|
Group Selector `json:"group"`
|
||||||
Location Selector `json:"location"`
|
Location Selector `json:"location"`
|
||||||
Product Product `json:"product"`
|
Product Product `json:"product"`
|
||||||
LastSeen time.Time `json:"last_seen"`
|
LastSeen *time.Time `json:"last_seen,omitempty"`
|
||||||
SecondsLastSeen float64 `json:"seconds_last_seen"`
|
SecondsLastSeen float64 `json:"seconds_last_seen"`
|
||||||
}
|
}
|
||||||
|
|
||||||
State struct {
|
State struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user