From 1c1f556e2426cffb47af44398661e27ccb0201c2 Mon Sep 17 00:00:00 2001 From: Stefan Hoffmann Date: Sun, 14 Feb 2021 00:40:03 +0100 Subject: [PATCH] types --- types.go | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/types.go b/types.go index 03ba1a5..0bdc88c 100644 --- a/types.go +++ b/types.go @@ -97,34 +97,34 @@ type link struct { } type node struct { - Firstseen string `json:"firstseen,omitempty"` - Lastseen string `json:"lastseen,omitempty"` - IsOnline bool `json:"is_online,omitempty"` + Firstseen string `json:"firstseen"` + Lastseen string `json:"lastseen"` + IsOnline bool `json:"is_online"` IsGateway bool `json:"is_gateway,omitempty"` - Clients int `json:"clients,omitempty"` - ClientsWifi24 int `json:"clients_wifi24,omitempty"` - ClientsWifi5 int `json:"clients_wifi5,omitempty"` - ClientsOther int `json:"clients_other,omitempty"` + Clients int `json:"clients"` + ClientsWifi24 int `json:"clients_wifi24"` + ClientsWifi5 int `json:"clients_wifi5"` + ClientsOther int `json:"clients_other"` RootFSUsage int `json:"rootfs_usage,omitempty"` LoadAVG float64 `json:"loadavg,omitempty"` MemoryUsage float64 `json:"memory_usage,omitempty"` - Uptime string `json:"uptime,omitempty"` - GatewayNexthop string `json:"gateway_nexthop,omitempty"` - Gateway string `json:"gateway,omitempty"` + Uptime string `json:"uptime"` + GatewayNexthop string `json:"gateway_nexthop"` + Gateway string `json:"gateway"` Location *struct { Longitude float64 `json:"longitude"` Latitude float64 `json:"latitude"` } `json:"location,omitempty"` - NodeID string `json:"node_id,omitempty"` - MAC string `json:"mac,omitempty"` - Adresses []string `json:"addresses,omitempty"` - Domain string `json:"domain,omitempty"` - Hostname string `json:"hostname,omitempty"` - Owner string `json:"owner,omitempty"` + NodeID string `json:"node_id"` + MAC string `json:"mac"` + Adresses []string `json:"addresses"` + Domain string `json:"domain"` + Hostname string `json:"hostname"` + Owner string `json:"owner"` Firmware firmware `json:"firmware"` Autoupdater autoupdater `json:"autoupdater"` - NProc int `json:"nproc,omitempty"` - Model string `json:"model,omitempty"` + NProc int `json:"nproc"` + Model string `json:"model"` } type firmware struct {