BatchRecognizeMetadata

Operation metadata for recognizers.batchRecognize.

JSON representation
{
  "transcriptionMetadata": {
    string: {
      object (BatchRecognizeTranscriptionMetadata)
    },
    ...
  }
}
Fields
transcriptionMetadata

map (key: string, value: object (BatchRecognizeTranscriptionMetadata))

Map from provided filename to the transcription metadata for that file.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

BatchRecognizeTranscriptionMetadata

Metadata about transcription for a single file (for example, progress percent).

JSON representation
{
  "progressPercent": integer,
  "error": {
    object (Status)
  },
  "uri": string
}
Fields
progressPercent

integer

How much of the file has been transcribed so far.

error

object (Status)

Error if one was encountered.

uri

string

The Cloud Storage URI to which recognition results will be written.