diff --git a/v2/models/deviceservice.go b/v2/models/deviceservice.go index a95b54ed..7238f348 100644 --- a/v2/models/deviceservice.go +++ b/v2/models/deviceservice.go @@ -11,11 +11,11 @@ package models type DeviceService struct { Timestamps Id string - Name string // time in milliseconds that the device last provided any feedback or responded to any request - Description string // Description of the device service - LastConnected int64 // time in milliseconds that the device last reported data to the core - LastReported int64 // operational state - either enabled or disabled - Labels []string // tags or other labels applied to the device service for search or other identification needs - BaseAddress string // BaseAddress is a fully qualified URI, e.g. :\\:/ - AdminState AdminState // Device Service Admin State + Name string + Description string + LastConnected int64 + LastReported int64 + Labels []string + BaseAddress string + AdminState AdminState }