EdgexAgent/device-gps-go/pkg/models/notify.go

17 lines
386 B
Go
Raw Normal View History

2025-07-10 20:30:06 +08:00
//
// 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"`
}