Package com.openai.models.responses
Class ResponseLocalEnvironment.Builder
-
- All Implemented Interfaces:
public final class ResponseLocalEnvironment.BuilderA builder for ResponseLocalEnvironment.
-
-
Method Summary
Modifier and Type Method Description final ResponseLocalEnvironment.Buildertype(JsonValue type)Sets the field to an arbitrary JSON value. final ResponseLocalEnvironment.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final ResponseLocalEnvironment.BuilderputAdditionalProperty(String key, JsonValue value)final ResponseLocalEnvironment.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final ResponseLocalEnvironment.BuilderremoveAdditionalProperty(String key)final ResponseLocalEnvironment.BuilderremoveAllAdditionalProperties(Set<String> keys)final ResponseLocalEnvironmentbuild()Returns an immutable instance of ResponseLocalEnvironment. -
-
Method Detail
-
type
final ResponseLocalEnvironment.Builder type(JsonValue type)
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("local")This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ResponseLocalEnvironment.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseLocalEnvironment.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseLocalEnvironment.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseLocalEnvironment.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseLocalEnvironment.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseLocalEnvironment build()
Returns an immutable instance of ResponseLocalEnvironment.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-