ConditionDTO

DTO that represents an internal Condition object.

Sub Type Property: "_type" : "Condition"

Fields

Type
Name
Description
Optional
Default Value
String  
attributeName
The attribute name of the condition.
false
 
Boolean  
searchResultField
Flag to indicate if the field should be included in search result.
true
false
Boolean  
listKey
Flag to indicate if the field should be included in lists.
true
false
Boolean  
defaultSearchValue
Flag to indicate if this is an defaul search value.
true
false
Boolean  
singleFieldSearchIdentifier
Flag to indicate if the condition should be used as singleFieldSearch identifier.
true
false
Boolean  
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
		}
	}
}