2019-02-28 18:48:25 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// Device ...
|
|
|
|
type Device struct {
|
2019-08-20 19:37:45 +00:00
|
|
|
DeviceID string `json:"device_id" xml:"device_id"`
|
|
|
|
DeviceName string `json:"device_name" xml:"device_name"`
|
|
|
|
DeviceLocation *string `json:"device_location" xml:"device_location"`
|
|
|
|
DeviceLastContact *time.Time `json:"device_last_contact" xml:"device_last_contact"`
|
|
|
|
Logfile string `json:"logfile" xml:"logfile"`
|
|
|
|
CreationDate time.Time `json:"creation_date" xml:"creation_date"`
|
2019-02-28 18:48:25 +00:00
|
|
|
}
|