Class BetaLocalSkill.Builder
-
- All Implemented Interfaces:
public final class BetaLocalSkill.BuilderA builder for BetaLocalSkill.
-
-
Method Summary
-
-
Method Detail
-
description
final BetaLocalSkill.Builder description(String description)
The description of the skill.
-
description
final BetaLocalSkill.Builder description(JsonField<String> description)
Sets Builder.description to an arbitrary JSON value.
You should usually call Builder.description with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final BetaLocalSkill.Builder name(String name)
The name of the skill.
-
name
final BetaLocalSkill.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
path
final BetaLocalSkill.Builder path(String path)
The path to the directory containing the skill.
-
path
final BetaLocalSkill.Builder path(JsonField<String> path)
Sets Builder.path to an arbitrary JSON value.
You should usually call Builder.path 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 BetaLocalSkill.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaLocalSkill.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaLocalSkill.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaLocalSkill.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaLocalSkill.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaLocalSkill build()
Returns an immutable instance of BetaLocalSkill.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.description() .name() .path()
-
-
-
-