transcript property

  1. @TagNumber(1)
String transcript

Transcript text representing the words that the user spoke. In languages that use spaces to separate words, the transcript might have a leading space if it isn't the first result. You can concatenate each result to obtain the full transcript without using a separator.

Implementation

@$pb.TagNumber(1)
$core.String get transcript => $_getSZ(0);
  1. @TagNumber(1)
void transcript=(String v)

Implementation

@$pb.TagNumber(1)
set transcript($core.String v) {
  $_setString(0, v);
}