Class RunStepDelta.Builder
-
- All Implemented Interfaces:
public final class RunStepDelta.BuilderA builder for RunStepDelta.
-
-
Method Summary
-
-
Method Detail
-
stepDetails
final RunStepDelta.Builder stepDetails(RunStepDelta.StepDetails stepDetails)
The details of the run step.
-
stepDetails
final RunStepDelta.Builder stepDetails(JsonField<RunStepDelta.StepDetails> stepDetails)
Sets Builder.stepDetails to an arbitrary JSON value.
You should usually call Builder.stepDetails with a well-typed StepDetails value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
stepDetails
final RunStepDelta.Builder stepDetails(RunStepDeltaMessageDelta messageCreation)
Alias for calling stepDetails with
StepDetails.ofMessageCreation(messageCreation).
-
stepDetails
final RunStepDelta.Builder stepDetails(ToolCallDeltaObject toolCalls)
Alias for calling stepDetails with
StepDetails.ofToolCalls(toolCalls).
-
additionalProperties
final RunStepDelta.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final RunStepDelta.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final RunStepDelta.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final RunStepDelta.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final RunStepDelta.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final RunStepDelta build()
Returns an immutable instance of RunStepDelta.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-