enableWordConfidence property

  1. @TagNumber(15)
bool enableWordConfidence

If true, the top result includes a list of words and the confidence for those words. If false, no word-level confidence information is returned. The default is false.

Implementation

@$pb.TagNumber(15)
$core.bool get enableWordConfidence => $_getBF(13);
  1. @TagNumber(15)
void enableWordConfidence=(bool v)

Implementation

@$pb.TagNumber(15)
set enableWordConfidence($core.bool v) {
  $_setBool(13, v);
}