Package com.openai.models
Class RunStepDeltaEvent
-
- All Implemented Interfaces:
public final class RunStepDeltaEvent
Represents a run step delta i.e. any changed fields on a run step during streaming.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
RunStepDeltaEvent.Builder
public final class
RunStepDeltaEvent.Object
The object type, which is always
thread.run.step.delta
.
-
Method Summary
Modifier and Type Method Description final String
id()
The identifier of the run step, which can be referenced in API endpoints. final RunStepDelta
delta()
The delta containing the fields that have changed on the run step. final RunStepDeltaEvent.Object
object_()
The object type, which is always thread.run.step.delta
.final JsonField<String>
_id()
The identifier of the run step, which can be referenced in API endpoints. final JsonField<RunStepDelta>
_delta()
The delta containing the fields that have changed on the run step. final JsonField<RunStepDeltaEvent.Object>
_object_()
The object type, which is always thread.run.step.delta
.final Map<String, JsonValue>
_additionalProperties()
final RunStepDeltaEvent
validate()
final RunStepDeltaEvent.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static RunStepDeltaEvent.Builder
builder()
-
-
Method Detail
-
delta
final RunStepDelta delta()
The delta containing the fields that have changed on the run step.
-
object_
final RunStepDeltaEvent.Object object_()
The object type, which is always
thread.run.step.delta
.
-
_id
final JsonField<String> _id()
The identifier of the run step, which can be referenced in API endpoints.
-
_delta
final JsonField<RunStepDelta> _delta()
The delta containing the fields that have changed on the run step.
-
_object_
final JsonField<RunStepDeltaEvent.Object> _object_()
The object type, which is always
thread.run.step.delta
.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final RunStepDeltaEvent validate()
-
toBuilder
final RunStepDeltaEvent.Builder toBuilder()
-
builder
final static RunStepDeltaEvent.Builder builder()
-
-
-
-