enableWordTimeOffsets property

  1. @TagNumber(2)
bool enableWordTimeOffsets

If true, the top result includes a list of words and the start and end time offsets (timestamps) for those words. If false, no word-level time offset information is returned. The default is false.

Implementation

@$pb.TagNumber(2)
$core.bool get enableWordTimeOffsets => $_getBF(1);
  1. @TagNumber(2)
void enableWordTimeOffsets=(bool v)

Implementation

@$pb.TagNumber(2)
set enableWordTimeOffsets($core.bool v) {
  $_setBool(1, v);
}