Package com.openai.models.beta.responses
Class BetaLocalEnvironment.Builder
-
- All Implemented Interfaces:
public final class BetaLocalEnvironment.BuilderA builder for BetaLocalEnvironment.
-
-
Method Summary
-
-
Method Detail
-
type
final BetaLocalEnvironment.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.
-
skills
final BetaLocalEnvironment.Builder skills(List<BetaLocalSkill> skills)
An optional list of skills.
-
skills
final BetaLocalEnvironment.Builder skills(JsonField<List<BetaLocalSkill>> skills)
Sets Builder.skills to an arbitrary JSON value.
You should usually call Builder.skills with a well-typed
List<BetaLocalSkill>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addSkill
final BetaLocalEnvironment.Builder addSkill(BetaLocalSkill skill)
Adds a single BetaLocalSkill to skills.
-
additionalProperties
final BetaLocalEnvironment.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaLocalEnvironment.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaLocalEnvironment.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaLocalEnvironment.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaLocalEnvironment.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaLocalEnvironment build()
Returns an immutable instance of BetaLocalEnvironment.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-