Class AssistantStreamEvent.ThreadMessageCompleted
-
- All Implemented Interfaces:
public final class AssistantStreamEvent.ThreadMessageCompletedOccurs when a message is completed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classAssistantStreamEvent.ThreadMessageCompleted.BuilderA builder for ThreadMessageCompleted.
-
Method Summary
Modifier and Type Method Description final Messagedata()Represents a message within a thread. final JsonValue_event()Expected to always return the following:
However, this method can be useful for debugging and logging (e.g.JsonValue.from("thread.message.completed")final JsonField<Message>_data()Returns the raw JSON value of data. final Map<String, JsonValue>_additionalProperties()final AssistantStreamEvent.ThreadMessageCompleted.BuildertoBuilder()final AssistantStreamEvent.ThreadMessageCompletedvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static AssistantStreamEvent.ThreadMessageCompleted.Builderbuilder()Returns a mutable builder for constructing an instance of ThreadMessageCompleted. -
-
Method Detail
-
_event
final JsonValue _event()
Expected to always return the following:
JsonValue.from("thread.message.completed")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_data
final JsonField<Message> _data()
Returns the raw JSON value of data.
Unlike data, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final AssistantStreamEvent.ThreadMessageCompleted.Builder toBuilder()
-
validate
final AssistantStreamEvent.ThreadMessageCompleted validate()
-
builder
final static AssistantStreamEvent.ThreadMessageCompleted.Builder builder()
Returns a mutable builder for constructing an instance of ThreadMessageCompleted.
The following fields are required:
.data()
-
-
-
-