Package com.openai.models
Class TranscriptionVerbose
-
- All Implemented Interfaces:
public final class TranscriptionVerboseRepresents a verbose json transcription response returned by model, based on the provided input.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classTranscriptionVerbose.BuilderA builder for TranscriptionVerbose.
-
Method Summary
Modifier and Type Method Description final Doubleduration()The duration of the input audio. final Stringlanguage()The language of the input audio. final Stringtext()The transcribed text. final Optional<List<TranscriptionSegment>>segments()Segments of the transcribed text and their corresponding details. final Optional<List<TranscriptionWord>>words()Extracted words and their corresponding timestamps. final JsonField<Double>_duration()The duration of the input audio. final JsonField<String>_language()The language of the input audio. final JsonField<String>_text()The transcribed text. final JsonField<List<TranscriptionSegment>>_segments()Segments of the transcribed text and their corresponding details. final JsonField<List<TranscriptionWord>>_words()Extracted words and their corresponding timestamps. final Map<String, JsonValue>_additionalProperties()final TranscriptionVerbosevalidate()final TranscriptionVerbose.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static TranscriptionVerbose.Builderbuilder()Returns a mutable builder for constructing an instance of TranscriptionVerbose. -
-
Method Detail
-
segments
final Optional<List<TranscriptionSegment>> segments()
Segments of the transcribed text and their corresponding details.
-
words
final Optional<List<TranscriptionWord>> words()
Extracted words and their corresponding timestamps.
-
_segments
final JsonField<List<TranscriptionSegment>> _segments()
Segments of the transcribed text and their corresponding details.
-
_words
final JsonField<List<TranscriptionWord>> _words()
Extracted words and their corresponding timestamps.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final TranscriptionVerbose validate()
-
toBuilder
final TranscriptionVerbose.Builder toBuilder()
-
builder
final static TranscriptionVerbose.Builder builder()
Returns a mutable builder for constructing an instance of TranscriptionVerbose.
The following fields are required:
.duration() .language() .text()
-
-
-
-