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

     1  package models
     2  
     3  // Device and its properties are defined in the APIv2 specification:
     4  // https://app.swaggerhub.com/apis-docs/EdgeXFoundry1/core-metadata/2.1.0#/Device
     5  type Link struct {
     6  	DBTimestamp
     7  	Id         string
     8  	DeviceId   string
     9  	TargetId   string
    10  	Properties map[string]interface{}
    11  	Device     Device
    12  	Target     Device
    13  }