VarDefFunctionDTO

FunctionDTO that represents the following internal functions:

Sub Type Property: "_type" : "VarDefFunction"

Fields

Type
Name
Description
Optional
Default Value
String  
name
The name of the variable.
false
 
value
The value of variable according to field type.
false
 

Example

{
	"_type" : "VarDefFunction",
	"name" : "myVariable",
	"value" : {
		"_type" : "Double",
		"value" : 123.45,
		"writable" : true,
		"readable" : true,
		"status" : null
	}
}