Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.03 KB

File metadata and controls

29 lines (22 loc) · 1.03 KB

FormFieldConditionPredicate

Properties

Name Type Description Notes
fieldLocationIndex Integer Index of the location of the form field used in the predicate [optional]
fieldName String Name of the field whose value is the basis of predicate [optional]
operator OperatorEnum Operator to be applied on the value of the predicate field. [optional]
value String Value to compare against the value of the predicate's form field, using the specified operator [optional]

Enum: OperatorEnum

Name Value
EQUALS "EQUALS"
NOT_EQUALS "NOT_EQUALS"
LESS_THAN "LESS_THAN"
LESS_THAN_EQUALS "LESS_THAN_EQUALS"
GREATER_THAN "GREATER_THAN"
GREATER_THAN_EQUALS "GREATER_THAN_EQUALS"
IN "IN"
NOT_IN "NOT_IN"
CONTAINS "CONTAINS"
NOT_CONTAINS "NOT_CONTAINS"