github.com/simpleiot/simpleiot@v0.18.3/client/variable.go (about)

     1  package client
     2  
     3  // Variable represents the config of a variable node type
     4  type Variable struct {
     5  	ID           string             `node:"id"`
     6  	Parent       string             `node:"parent"`
     7  	Description  string             `point:"description"`
     8  	VariableType string             `point:"variableType"`
     9  	Value        map[string]float64 `point:"value"`
    10  }