EdgexAgent/device-gps-go/pkg/models/notify.go
2025-07-10 20:30:06 +08:00

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"`
}