Class BetaSkill.Builder
-
- All Implemented Interfaces:
public final class BetaSkill.BuilderA builder for BetaSkill.
-
-
Method Summary
-
-
Method Detail
-
skillId
final BetaSkill.Builder skillId(String skillId)
Skill ID
-
skillId
final BetaSkill.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 BetaSkill.Builder type(BetaSkill.Type type)
Type of skill - either 'anthropic' (built-in) or 'custom' (user-defined)
-
type
final BetaSkill.Builder type(JsonField<BetaSkill.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 BetaSkill.Builder version(String version)
Skill version or 'latest' for most recent version
-
version
final BetaSkill.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 BetaSkill.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaSkill.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaSkill.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaSkill.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaSkill.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-