InFunctionDTO
FunctionDTO that represents the following internal functions:
- InFunction
- NotInFunction (not=true)
Sub Type Property: "_type" : "In"
Fields
Type
Name
Description
Optional
Default Value
params
The parameter list of the function.
false
not
The flag to invert the function.
true
false
Example
{
"_type" : "In",
"not" : false,
"params" : [
{
"_type" : "String",
"value" : "A",
"writable" : true,
"readable" : true,
"status" : null
},
{
"_type" : "String",
"value" : "C",
"writable" : true,
"readable" : true,
"status" : null
},
{
"_type" : "String",
"value" : "C",
"writable" : true,
"readable" : true,
"status" : null
}
]
}