op property
This MUST be specified for queries and must NOT be specified for datapoints. Possible string values are:
- "OPERATOR_UNSPECIFIED" : Default value of the enum.
- "LESS" : Datapoints are eligible iff their value is < the query's.
- "LESS_EQUAL" : Datapoints are eligible iff their value is <= the query's.
- "EQUAL" : Datapoints are eligible iff their value is == the query's.
- "GREATER_EQUAL" : Datapoints are eligible iff their value is >= the query's.
- "GREATER" : Datapoints are eligible iff their value is > the query's.
- "NOT_EQUAL" : Datapoints are eligible iff their value is != the query's.
Implementation
core.String? op;