Class SkillVersion.Builder
-
- All Implemented Interfaces:
public final class SkillVersion.BuilderA builder for SkillVersion.
-
-
Method Summary
Modifier and Type Method Description final SkillVersion.Builderid(String id)Unique identifier for the skill version. final SkillVersion.Builderid(JsonField<String> id)Sets Builder.id to an arbitrary JSON value. final SkillVersion.BuildercreatedAt(Long createdAt)Unix timestamp (seconds) for when the version was created. final SkillVersion.BuildercreatedAt(JsonField<Long> createdAt)Sets Builder.createdAt to an arbitrary JSON value. final SkillVersion.Builderdescription(String description)Description of the skill version. final SkillVersion.Builderdescription(JsonField<String> description)Sets Builder.description to an arbitrary JSON value. final SkillVersion.Buildername(String name)Name of the skill version. final SkillVersion.Buildername(JsonField<String> name)Sets Builder.name to an arbitrary JSON value. final SkillVersion.Builderobject_(JsonValue object_)Sets the field to an arbitrary JSON value. final SkillVersion.BuilderskillId(String skillId)Identifier of the skill for this version. final SkillVersion.BuilderskillId(JsonField<String> skillId)Sets Builder.skillId to an arbitrary JSON value. final SkillVersion.Builderversion(String version)Version number for this skill. final SkillVersion.Builderversion(JsonField<String> version)Sets Builder.version to an arbitrary JSON value. final SkillVersion.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final SkillVersion.BuilderputAdditionalProperty(String key, JsonValue value)final SkillVersion.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final SkillVersion.BuilderremoveAdditionalProperty(String key)final SkillVersion.BuilderremoveAllAdditionalProperties(Set<String> keys)final SkillVersionbuild()Returns an immutable instance of SkillVersion. -
-
Method Detail
-
id
final SkillVersion.Builder id(String id)
Unique identifier for the skill version.
-
id
final SkillVersion.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
createdAt
final SkillVersion.Builder createdAt(Long createdAt)
Unix timestamp (seconds) for when the version was created.
-
createdAt
final SkillVersion.Builder createdAt(JsonField<Long> createdAt)
Sets Builder.createdAt to an arbitrary JSON value.
You should usually call Builder.createdAt with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
description
final SkillVersion.Builder description(String description)
Description of the skill version.
-
description
final SkillVersion.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 SkillVersion.Builder name(String name)
Name of the skill version.
-
name
final SkillVersion.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.
-
object_
final SkillVersion.Builder object_(JsonValue object_)
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.version")This method is primarily for setting the field to an undocumented or not yet supported value.
-
skillId
final SkillVersion.Builder skillId(String skillId)
Identifier of the skill for this version.
-
skillId
final SkillVersion.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.
-
version
final SkillVersion.Builder version(String version)
Version number for this skill.
-
version
final SkillVersion.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 SkillVersion.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final SkillVersion.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final SkillVersion.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final SkillVersion.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final SkillVersion.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final SkillVersion build()
Returns an immutable instance of SkillVersion.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .createdAt() .description() .name() .skillId() .version()
-
-
-
-