dev.azure.com/aidainnovazione0090/DeviceManager/_git/go-mod-core-contracts@v1.0.2/models/devicecommand.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 DeviceCommand struct {
     9  	Name               string
    10  	IsHidden           bool
    11  	ReadWrite          string
    12  	ResourceOperations []ResourceOperation
    13  	Tags               map[string]any
    14  }