Package com.openai.models.responses
Class ResponseAudioDoneEvent
-
- All Implemented Interfaces:
public final class ResponseAudioDoneEvent
Emitted when the audio response is complete.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseAudioDoneEvent.Builder
A builder for ResponseAudioDoneEvent.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
The type of the event. final Map<String, JsonValue>
_additionalProperties()
final ResponseAudioDoneEvent.Builder
toBuilder()
final ResponseAudioDoneEvent
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseAudioDoneEvent.Builder
builder()
Returns a mutable builder for constructing an instance of ResponseAudioDoneEvent. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the event. Always
response.audio.done
.Expected to always return the following:
JsonValue.from("response.audio.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()
-
toBuilder
final ResponseAudioDoneEvent.Builder toBuilder()
-
validate
final ResponseAudioDoneEvent validate()
-
builder
final static ResponseAudioDoneEvent.Builder builder()
Returns a mutable builder for constructing an instance of ResponseAudioDoneEvent.
-
-
-
-