Class RunStepDeltaEvent.Builder
-
- All Implemented Interfaces:
public final class RunStepDeltaEvent.Builder
A builder for RunStepDeltaEvent.
-
-
Method Summary
-
-
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)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
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)
Sets Builder.delta to an arbitrary JSON value.
You should usually call Builder.delta with a well-typed RunStepDelta value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
object_
final RunStepDeltaEvent.Builder object_(JsonValue object_)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("thread.run.step.delta")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
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()
Returns an immutable instance of RunStepDeltaEvent.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .delta()
-
-
-
-