mode property
The field's mode. Possible string values are:
- "MODE_UNSPECIFIED" : The mode is unspecified.
- "ASCENDING" : The field's values are indexed so as to support sequencing in ascending order and also query by <, >, <=, >=, and =.
- "DESCENDING" : The field's values are indexed so as to support sequencing in descending order and also query by <, >, <=, >=, and =.
- "ARRAY_CONTAINS" : The field's array values are indexed so as to support membership using ARRAY_CONTAINS queries.
Implementation
core.String? mode;