Package com.openai.models
Class TranscriptionVerbose
-
- All Implemented Interfaces:
public final class TranscriptionVerbose
Represents 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 class
TranscriptionVerbose.Builder
A builder for TranscriptionVerbose.
-
Method Summary
Modifier and Type Method Description final Double
duration()
The duration of the input audio. final String
language()
The language of the input audio. final String
text()
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 TranscriptionVerbose
validate()
final TranscriptionVerbose.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static TranscriptionVerbose.Builder
builder()
-
-
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()
-
-
-
-