dev.azure.com/aidainnovazione0090/DeviceManager/_git/go-mod-core-contracts@v1.0.2/models/event.go (about)

     1  //
     2  // Copyright (C) 2020-2021 IOTech Ltd
     3  //
     4  // SPDX-License-Identifier: Apache-2.0
     5  
     6  package models
     7  
     8  type Event struct {
     9  	Id          string
    10  	DeviceName  string
    11  	ProfileName string
    12  	SourceName  string
    13  	Origin      int64
    14  	Readings    []Reading
    15  	Tags        map[string]interface{}
    16  }