WildcardFunctionDTO
FunctionDTO that represents the following internal functions:
- ContainsFunction (operator=CONTAINS)
- NotContainsFunction (operator=CONTAINS, not=true)
- LikeFunction (operator=STARTS_WITH)
- NotLikeFunction (operator=STARTS_WITH, not=true)
- EndWithFunction (operator=END_WITH)
- NotEndWithFunction (operator=END_WITH, not=true)
Sub Type Property: "_type" : "Wildcard"
Fields
Type
Name
Description
Optional
Default Value
value
The parameter value of the function.
false
operator
The operator of the function.
false
not
The flag to invert the function.
true
false
Example
{
"_type" : "Wildcard",
"operator" : "START_WITH",
"not" : false,
"value" : {
"_type" : "String",
"value" : "Del",
"writable" : true,
"readable" : true,
"status" : null
}
}