interface TranslationVerbose {
    duration: string;
    language: string;
    segments?: TranscriptionSegment[];
    text: string;
}

Properties

duration: string

The duration of the input audio.

language: string

The language of the output translation (always english).

Segments of the translated text and their corresponding details.

text: string

The translated text.