Operator
public enum Operator : String
Represents the operator to be applied to the value of the query i.e. equals, not equals etc.
Refer to the c8y API documentation for more information
-
equal
Declaration
Swift
case eq -
not equal
Declaration
Swift
case ne -
less than (numeric only)
Declaration
Swift
case lt -
greater than (numeric only)
Declaration
Swift
case gt -
less than or equals (numeric only)
Declaration
Swift
case le -
greater than or equals (numeric only)
Declaration
Swift
case ge
View on GitHub
Operator Enumeration Reference