Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

Expression Set Condition Criteria Input

Input representation of a condition criteria in an expression set.
Root XML tag
<ExpressionSetConditionCriteriaInput>
JSON example
1"criteria" : [ {
2                "operator" : "Equals",
3                "sequenceNumber" : 1,
4                "sourceFieldName" : "a",
5                "value" : "0",
6                "valueType" : "Literal"
7              } ]
Properties
Name Type Description Required or Optional Available Version
operator String Condition operator of the expression set.

Valid values are:

  • Contains
  • DoesNot​Contain
  • Equals
  • GreaterThan​OrEquals
  • Greater​Than
  • IsNot​Null
  • IsNull
  • LessThan
  • LessThan​OrEquals
  • NotEqual​To
Required 58.0
sequence​Number Integer The sequence number of the condition in the advanced condition. Required 58.0
sourceField​Name String The expression set version variable associated with the condition criteria. Required 58.0
value String The right-hand side of the condition is specified in this field. Required 58.0
valueType String Criteria value type of the expression set.

Valid values are:

  • Formula
  • Literal
  • Parameter
Required 58.0