Class SkillReference.Builder
-
- All Implemented Interfaces:
public final class SkillReference.BuilderA builder for SkillReference.
-
-
Method Summary
-
-
Method Detail
-
skillId
final SkillReference.Builder skillId(String skillId)
The ID of the referenced skill.
-
skillId
final SkillReference.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 SkillReference.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("skill_reference")This method is primarily for setting the field to an undocumented or not yet supported value.
-
version
final SkillReference.Builder version(String version)
Optional skill version. Use a positive integer or 'latest'. Omit for default.
-
version
final SkillReference.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 SkillReference.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final SkillReference.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final SkillReference.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final SkillReference.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final SkillReference.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final SkillReference build()
Returns an immutable instance of SkillReference.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.skillId()
-
-
-
-