Class VersionDeleteResponse.Builder
-
- All Implemented Interfaces:
public final class VersionDeleteResponse.BuilderA builder for VersionDeleteResponse.
-
-
Method Summary
Modifier and Type Method Description final VersionDeleteResponse.Builderid(String id)Version identifier for the skill. final VersionDeleteResponse.Builderid(JsonField<String> id)Sets Builder.id to an arbitrary JSON value. final VersionDeleteResponse.Buildertype(String type)Deleted object type. final VersionDeleteResponse.Buildertype(JsonField<String> type)Sets Builder.type to an arbitrary JSON value. final VersionDeleteResponse.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final VersionDeleteResponse.BuilderputAdditionalProperty(String key, JsonValue value)final VersionDeleteResponse.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final VersionDeleteResponse.BuilderremoveAdditionalProperty(String key)final VersionDeleteResponse.BuilderremoveAllAdditionalProperties(Set<String> keys)final VersionDeleteResponsebuild()Returns an immutable instance of VersionDeleteResponse. -
-
Method Detail
-
id
final VersionDeleteResponse.Builder id(String id)
Version identifier for the skill.
Each version is identified by a Unix epoch timestamp (e.g., "1759178010641129").
-
id
final VersionDeleteResponse.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 VersionDeleteResponse.Builder type(String type)
Deleted object type.
For Skill Versions, this is always
"skill_version_deleted".
-
type
final VersionDeleteResponse.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 VersionDeleteResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VersionDeleteResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VersionDeleteResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VersionDeleteResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VersionDeleteResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VersionDeleteResponse build()
Returns an immutable instance of VersionDeleteResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .type()
-
-
-
-