Class LocalSkill.Builder
-
- All Implemented Interfaces:
public final class LocalSkill.BuilderA builder for LocalSkill.
-
-
Method Summary
-
-
Method Detail
-
description
final LocalSkill.Builder description(String description)
The description of the skill.
-
description
final LocalSkill.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 LocalSkill.Builder name(String name)
The name of the skill.
-
name
final LocalSkill.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 LocalSkill.Builder path(String path)
The path to the directory containing the skill.
-
path
final LocalSkill.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 LocalSkill.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final LocalSkill.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final LocalSkill.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final LocalSkill.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final LocalSkill.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final LocalSkill build()
Returns an immutable instance of LocalSkill.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.description() .name() .path()
-
-
-
-