Files
PandaX/iothub/netbase/iothub_session.go

14 lines
359 B
Go

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