ConditionDTO
DTO that represents an internal Condition object.
Sub Type Property: "_type" : "Condition"
Fields
Type
Name
Description
Optional
Default Value
attributeName
The attribute name of the condition.
false
searchResultField
Flag to indicate if the field should be included in search result.
true
false
listKey
Flag to indicate if the field should be included in lists.
true
false
defaultSearchValue
Flag to indicate if this is an defaul search value.
true
false
singleFieldSearchIdentifier
Flag to indicate if the condition should be used as singleFieldSearch identifier.
true
false
useCoalesce
Flag to indicate if the condition should use the coalesce function.
true
false
function
The function of the condition.
false
Example
{
"_type" : "Condition",
"attributeName" : "Subject.Activity",
"searchResultField" : true,
"listKey" : true,
"defaultSearchValue" : false,
"singleFieldSearchIdentifier" : false,
"useCoalesce" : false,
"function" : {
"_type" : "Wildcard",
"operator" : "START_WITH",
"not" : false,
"value" : {
"_type" : "String",
"value" : "Del",
"writable" : true,
"readable" : true,
"status" : null
}
}
}