Location is optional for beverage_supply so make it omitempty

This commit is contained in:
Bendodroid 2024-02-13 19:37:52 +01:00
commit 8015ed2be5
Signed by: bendodroid
GPG key ID: 3EEE19A0F73D5FFC
2 changed files with 12 additions and 2 deletions

View file

@ -45,7 +45,7 @@ type SpaceState struct {
type EnvironmentSensor struct {
Value float64 `json:"value"`
Unit string `json:"unit"`
Location string `json:"location"`
Location string `json:"location,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
LastChange int64 `json:"lastchange,omitempty"`
@ -61,7 +61,7 @@ type PersistentStateV14 struct {
type PersistentEnvironmentSensor struct {
Value float64 `json:"value"`
Location string `json:"location"`
Location string `json:"location,omitempty"`
Name string `json:"name,omitempty"`
LastChange int64 `json:"lastchange"`
}