Package com.openai.models
Class RunStepDeltaEvent
-
- All Implemented Interfaces:
public final class RunStepDeltaEventRepresents 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 classRunStepDeltaEvent.BuilderA builder for RunStepDeltaEvent.
-
Method Summary
Modifier and Type Method Description final Stringid()The identifier of the run step, which can be referenced in API endpoints. final RunStepDeltadelta()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 RunStepDeltaEventvalidate()final RunStepDeltaEvent.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static RunStepDeltaEvent.Builderbuilder()-
-
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()
-
-
-
-