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

LongRunningRecognizeMetadata

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

Describes the progress of a long-running LongRunningRecognize call. It is included in the metadata field of the Operation returned by the GetOperation call of the google::longrunning::Operations service.

interface LongRunningRecognizeMetadata {
lastUpdateTime?: Date;
progressPercent?: number;
startTime?: Date;
readonly uri?: string;
}

§Properties

§
lastUpdateTime?: Date
[src]

Time of the most recent processing update.

§
progressPercent?: number
[src]

Approximate percentage of audio processed thus far. Guaranteed to be 100 when the audio is fully processed and the results are available.

§
startTime?: Date
[src]

Time when the request was received.

§
readonly uri?: string
[src]

Output only. The URI of the audio file being transcribed. Empty if the audio was sent as byte content.