Class SkillDeleteResponse.Builder
-
- All Implemented Interfaces:
public final class SkillDeleteResponse.BuilderA builder for SkillDeleteResponse.
-
-
Method Summary
Modifier and Type Method Description final SkillDeleteResponse.Builderid(String id)Unique identifier for the skill. final SkillDeleteResponse.Builderid(JsonField<String> id)Sets Builder.id to an arbitrary JSON value. final SkillDeleteResponse.Buildertype(String type)Deleted object type. final SkillDeleteResponse.Buildertype(JsonField<String> type)Sets Builder.type to an arbitrary JSON value. final SkillDeleteResponse.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final SkillDeleteResponse.BuilderputAdditionalProperty(String key, JsonValue value)final SkillDeleteResponse.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final SkillDeleteResponse.BuilderremoveAdditionalProperty(String key)final SkillDeleteResponse.BuilderremoveAllAdditionalProperties(Set<String> keys)final SkillDeleteResponsebuild()Returns an immutable instance of SkillDeleteResponse. -
-
Method Detail
-
id
final SkillDeleteResponse.Builder id(String id)
Unique identifier for the skill.
The format and length of IDs may change over time.
-
id
final SkillDeleteResponse.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.
-
type
final SkillDeleteResponse.Builder type(String type)
Deleted object type.
For Skills, this is always
"skill_deleted".
-
type
final SkillDeleteResponse.Builder type(JsonField<String> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type 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 SkillDeleteResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final SkillDeleteResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final SkillDeleteResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final SkillDeleteResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final SkillDeleteResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final SkillDeleteResponse build()
Returns an immutable instance of SkillDeleteResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .type()
-
-
-
-