dev.azure.com/aidainnovazione0090/DeviceManager/_git/go-mod-core-contracts@v1.0.2/models/resourceproperties.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 ResourceProperties struct {
     9  	ValueType    string
    10  	ReadWrite    string
    11  	Units        string
    12  	Minimum      *float64
    13  	Maximum      *float64
    14  	DefaultValue string
    15  	Mask         *uint64
    16  	Shift        *int64
    17  	Scale        *float64
    18  	Offset       *float64
    19  	Base         *float64
    20  	Assertion    string
    21  	MediaType    string
    22  	Optional     map[string]any
    23  }