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_index
andend_index
must be specified. - "FROM_START_INDEX" : Starts the range at
start_index
and continues until the end of the collection. Theend_index
must not be specified. - "ALL" : Sets the range to be the whole length of the collection. Both
the
start_index
and theend_index
must not be specified.
Implementation
core.String? type;