Class BetaSkillParams.Builder
-
- All Implemented Interfaces:
public final class BetaSkillParams.BuilderA builder for BetaSkillParams.
-
-
Method Summary
-
-
Method Detail
-
skillId
final BetaSkillParams.Builder skillId(String skillId)
Skill ID
-
skillId
final BetaSkillParams.Builder skillId(JsonField<String> skillId)
Sets Builder.skillId to an arbitrary JSON value.
You should usually call Builder.skillId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final BetaSkillParams.Builder type(BetaSkillParams.Type type)
Type of skill - either 'anthropic' (built-in) or 'custom' (user-defined)
-
type
final BetaSkillParams.Builder type(JsonField<BetaSkillParams.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
version
final BetaSkillParams.Builder version(String version)
Skill version or 'latest' for most recent version
-
version
final BetaSkillParams.Builder version(JsonField<String> version)
Sets Builder.version to an arbitrary JSON value.
You should usually call Builder.version with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaSkillParams.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaSkillParams.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaSkillParams.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaSkillParams.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaSkillParams.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaSkillParams build()
Returns an immutable instance of BetaSkillParams.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.skillId() .type()
-
-
-
-