VarDefFunctionDTO
FunctionDTO that represents the following internal functions:
- VarDefFunction
Sub Type Property: "_type" : "VarDefFunction"
Fields
Type
Name
Description
Optional
Default Value
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
}
}