FilterOperatorAndValues

JSON representation
{
  "filterOperator": enum (FilterOperator),
  "fieldValues": [
    string
  ]
}
Fields
filterOperator

enum (FilterOperator)

Operator for a single filter modifier.

fieldValues[]

string

Values for the modifier. All operators must have a single value, except for IN and BETWEEN. PAST uses negative seconds; for example, -86400 represents one day in the past.

FilterOperator

Enums
FILTER_OPERATOR_UNSPECIFIED Default unspecified.
EQUAL
NOT_EQUAL
IN
GREATER_THAN
GREATER_THAN_OR_EQUAL_TO
LESS_THAN
LESS_THAN_OR_EQUAL_TO
BETWEEN
PAST
IS_NULL
IS_NOT_NULL
STARTS_WITH
ENDS_WITH
DOES_NOT_STARTS_WITH
DOES_NOT_ENDS_WITH
NOT_IN
CONTAINS Performs a substring match.
DOES_NOT_CONTAIN Checks whether the field does not contain the substring.