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

  • eq

    equal

    Declaration

    Swift

    case eq
  • ne

    not equal

    Declaration

    Swift

    case ne
  • lt

    less than (numeric only)

    Declaration

    Swift

    case lt
  • gt

    greater than (numeric only)

    Declaration

    Swift

    case gt
  • le

    less than or equals (numeric only)

    Declaration

    Swift

    case le
  • ge

    greater than or equals (numeric only)

    Declaration

    Swift

    case ge