type property
The type of range. Possible string values are:
- "RANGE_TYPE_UNSPECIFIED" : Unspecified range type. This value must not be used.
- "FIXED_RANGE" : A fixed range. Both the
start_indexandend_indexmust be specified. - "FROM_START_INDEX" : Starts the range at
start_indexand continues until the end of the collection. Theend_indexmust not be specified. - "ALL" : Sets the range to be the whole length of the collection. Both
the
start_indexand theend_indexmust not be specified.
Implementation
core.String? type;