Package com.openai.models
Class RunStepDeltaEvent.Builder
-
- All Implemented Interfaces:
public final class RunStepDeltaEvent.Builder
A builder for RunStepDeltaEvent.
-
-
Method Summary
Modifier and Type Method Description final RunStepDeltaEvent.Builder
id(String id)
The identifier of the run step, which can be referenced in API endpoints. final RunStepDeltaEvent.Builder
id(JsonField<String> id)
The identifier of the run step, which can be referenced in API endpoints. final RunStepDeltaEvent.Builder
delta(RunStepDelta delta)
The delta containing the fields that have changed on the run step. final RunStepDeltaEvent.Builder
delta(JsonField<RunStepDelta> delta)
The delta containing the fields that have changed on the run step. final RunStepDeltaEvent.Builder
object_(JsonValue object_)
The object type, which is always thread.run.step.delta
.final RunStepDeltaEvent.Builder
additionalProperties(Map<String, JsonValue> additionalProperties)
final RunStepDeltaEvent.Builder
putAdditionalProperty(String key, JsonValue value)
final RunStepDeltaEvent.Builder
putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
final RunStepDeltaEvent.Builder
removeAdditionalProperty(String key)
final RunStepDeltaEvent.Builder
removeAllAdditionalProperties(Set<String> keys)
final RunStepDeltaEvent
build()
-
-
Method Detail
-
id
final RunStepDeltaEvent.Builder id(String id)
The identifier of the run step, which can be referenced in API endpoints.
-
id
final RunStepDeltaEvent.Builder id(JsonField<String> id)
The identifier of the run step, which can be referenced in API endpoints.
-
delta
final RunStepDeltaEvent.Builder delta(RunStepDelta delta)
The delta containing the fields that have changed on the run step.
-
delta
final RunStepDeltaEvent.Builder delta(JsonField<RunStepDelta> delta)
The delta containing the fields that have changed on the run step.
-
object_
final RunStepDeltaEvent.Builder object_(JsonValue object_)
The object type, which is always
thread.run.step.delta
.
-
additionalProperties
final RunStepDeltaEvent.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final RunStepDeltaEvent.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final RunStepDeltaEvent.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final RunStepDeltaEvent.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final RunStepDeltaEvent.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final RunStepDeltaEvent build()
-
-
-
-