BetweenFunctionDTO
FunctionDTO that represents the following internal functions:
- BetweenFunction
- NotBetweeenFunction (not=true)
Sub Type Property: "_type" : "Between"
Fields
Type
Name
Description
Optional
Default Value
firstParam
The first parameter value of the function (lower bound).
false
secondParam
The second parameter value of the function (upper bound).
false
not
The flag to invert the function.
true
false
Example
{
"_type" : "Between",
"not" : false,
"firstParam" : {
"_type" : "Integer",
"value" : 10,
"writable" : true,
"readable" : true,
"status" : null
},
"secondParam" : {
"_type" : "Integer",
"value" : 100,
"writable" : true,
"readable" : true,
"status" : null
}
}