Files
PandaX/iothub/netbase/iothub_session.go
2023-11-07 16:45:23 +08:00

14 lines
324 B
Go

package netbase
import (
"pandax/pkg/global/model"
)
type DeviceEventInfo struct {
DeviceId string `json:"deviceId"`
DeviceAuth *model.DeviceAuth `json:"deviceAuth"`
Datas string `json:"datas"`
Type string `json:"type"`
RequestId string `json:"requestId"`
}