model property

  1. @TagNumber(9)
String model

Optional. Which model to use for recognition requests. Select the model best suited to your domain to get best results.

Guidance for choosing which model to use can be found in the Transcription Models Documentation and the models supported in each region can be found in the Table Of Supported Models.

Implementation

@$pb.TagNumber(9)
$core.String get model => $_getSZ(4);
  1. @TagNumber(9)
void model=(String v)

Implementation

@$pb.TagNumber(9)
set model($core.String v) {
  $_setString(4, v);
}