17 lines
386 B
Go
17 lines
386 B
Go
//
|
|
// Copyright (C) 2024 IOTech Ltd
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package models
|
|
|
|
type Progress struct {
|
|
RequestId string `json:"requestId"`
|
|
Progress int `json:"progress"`
|
|
Message string `json:"message,omitempty"`
|
|
}
|
|
type DeviceDiscoveryProgress struct {
|
|
Progress `json:",inline"`
|
|
DiscoveredDeviceCount int `json:"discoveredDeviceCount,omitempty"`
|
|
}
|