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

     1  //
     2  // Copyright (C) 2020-2023 IOTech Ltd
     3  //
     4  // SPDX-License-Identifier: Apache-2.0
     5  
     6  package models
     7  
     8  type DeviceResource struct {
     9  	Description string
    10  	Name        string
    11  	IsHidden    bool
    12  	Properties  ResourceProperties
    13  	Attributes  map[string]interface{}
    14  	Tags        map[string]any
    15  }