Package com.openai.models.responses
Class ResponseAudioTranscriptDoneEvent
-
- All Implemented Interfaces:
public final class ResponseAudioTranscriptDoneEvent
Emitted when the full audio transcript is completed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseAudioTranscriptDoneEvent.Builder
A builder for ResponseAudioTranscriptDoneEvent.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
The type of the event. final Map<String, JsonValue>
_additionalProperties()
final ResponseAudioTranscriptDoneEvent
validate()
final ResponseAudioTranscriptDoneEvent.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseAudioTranscriptDoneEvent.Builder
builder()
Returns a mutable builder for constructing an instance of ResponseAudioTranscriptDoneEvent. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the event. Always
response.audio.transcript.done
.Expected to always return the following:
JsonValue.from("response.audio.transcript.done")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ResponseAudioTranscriptDoneEvent validate()
-
toBuilder
final ResponseAudioTranscriptDoneEvent.Builder toBuilder()
-
builder
final static ResponseAudioTranscriptDoneEvent.Builder builder()
Returns a mutable builder for constructing an instance of ResponseAudioTranscriptDoneEvent.
-
-
-
-