OtelFieldDefinitionSupportedOperator

June 16, 2026 ยท View on GitHub

Example Usage

from mistralai.client.models import OtelFieldDefinitionSupportedOperator

# Open enum: unrecognized values are captured as UnrecognizedStr
value: OtelFieldDefinitionSupportedOperator = "eq"

Values

This is an open enum. Unrecognized values will not fail type checks.

  • "eq"
  • "neq"
  • "lt"
  • "lte"
  • "gt"
  • "gte"
  • "like"
  • "ilike"
  • "not_like"
  • "not_ilike"
  • "between"
  • "not_between"
  • "in"
  • "not_in"
  • "exists"
  • "not_exists"
  • "regexp"
  • "not_regexp"
  • "contains"
  • "not_contains"
  • "has"
  • "hasAny"
  • "hasAll"
  • "hasToken"