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