Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LongRunningRecognizeResponse

import type { LongRunningRecognizeResponse } from "https://googleapis.deno.dev/v1/speech:v1.ts";

The only message returned to the client by the LongRunningRecognize method. It contains the result as zero or more sequential SpeechRecognitionResult messages. It is included in the result.response field of the Operation returned by the GetOperation call of the google::longrunning::Operations service.

interface LongRunningRecognizeResponse {
outputConfig?: TranscriptOutputConfig;
outputError?: Status;
requestId?: bigint;
speechAdaptationInfo?: SpeechAdaptationInfo;
totalBilledTime?: number;
}

§Properties

§

Original output config if present in the request.

§
outputError?: Status
[src]

If the transcript output fails this field contains the relevant error.

§
requestId?: bigint
[src]

The ID associated with the request. This is a unique ID specific only to the given request.

§

Sequential list of transcription results corresponding to sequential portions of audio.

§
speechAdaptationInfo?: SpeechAdaptationInfo
[src]

Provides information on speech adaptation behavior in response

§
totalBilledTime?: number
[src]

When available, billed audio seconds for the corresponding request.