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
A builder for RunStepDeltaEvent.
-
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 JsonValue
_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 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.
-
_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.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final RunStepDeltaEvent validate()
-
toBuilder
final RunStepDeltaEvent.Builder toBuilder()
-
builder
final static RunStepDeltaEvent.Builder builder()
-
-
-
-