model property

  1. @Deprecated('This field is deprecated.')
  2. @TagNumber(4)
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

@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(4)
$core.String get model => $_getSZ(3);
  1. @Deprecated('This field is deprecated.')
  2. @TagNumber(4)
void model=(String v)

Implementation

@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(4)
set model($core.String v) {
  $_setString(3, v);
}