ConditionOperator
The possible operators for folder conditions.
enum ConditionOperator {
CONTAINS
DOES_NOT_CONTAIN
EQ
GT
GTEQ
LT
LTEQ
NOT_EQ
}
Values
ConditionOperator.CONTAINS
The parameter appears in the list.
ConditionOperator.DOES_NOT_CONTAIN
The parameter does not appear in the list.
ConditionOperator.EQ
The parameter is equal to the value.
ConditionOperator.GT
The parameter is greater than the value.
ConditionOperator.GTEQ
The parameter is greater than or equal to the value.
ConditionOperator.LT
The parameter is less than the value.
ConditionOperator.LTEQ
The parameter is less than or equal to the value.
ConditionOperator.NOT_EQ
The parameter is not equal to the value.
Member of
Condition object ● ConditionInput input