OperatorFunctionDTO
FunctionDTO that represents the following internal functions:
- EqualFunction (operator=EQUAL)
- UnEqualFunction (operator=NOT_EQUAL)
- GreaterFunction (operator=GREATER)
- SmallerFunction (operator=LESS)
- EqualGreaterFunction (operator=GREATER_EQUAL)
- EqualLessFunction (operator=LESS_EQUAL)
Sub Type Property: "_type" : "Operator"
Fields
Type
Name
Description
Optional
Default Value
value
The value of the function.
false
operator
The operator of the function.
false
Example
{
"_type" : "Operator",
"operator" : "EQUAL",
"value" : {
"_type" : "String",
"value" : "FooBar",
"writable" : true,
"readable" : true,
"status" : null
}
}