Class ModelDeleted.Builder
-
- All Implemented Interfaces:
public final class ModelDeleted.Builder
A builder for ModelDeleted.
-
-
Method Summary
Modifier and Type Method Description final ModelDeleted.Builder
id(String id)
final ModelDeleted.Builder
id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value. final ModelDeleted.Builder
deleted(Boolean deleted)
final ModelDeleted.Builder
deleted(JsonField<Boolean> deleted)
Sets Builder.deleted to an arbitrary JSON value. final ModelDeleted.Builder
object_(String object_)
final ModelDeleted.Builder
object_(JsonField<String> object_)
Sets Builder.object_ to an arbitrary JSON value. final ModelDeleted.Builder
additionalProperties(Map<String, JsonValue> additionalProperties)
final ModelDeleted.Builder
putAdditionalProperty(String key, JsonValue value)
final ModelDeleted.Builder
putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
final ModelDeleted.Builder
removeAdditionalProperty(String key)
final ModelDeleted.Builder
removeAllAdditionalProperties(Set<String> keys)
final ModelDeleted
build()
Returns an immutable instance of ModelDeleted. -
-
Method Detail
-
id
final ModelDeleted.Builder id(String id)
-
id
final ModelDeleted.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 ModelDeleted.Builder deleted(Boolean deleted)
-
deleted
final ModelDeleted.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 ModelDeleted.Builder object_(String object_)
-
object_
final ModelDeleted.Builder object_(JsonField<String> object_)
Sets Builder.object_ to an arbitrary JSON value.
You should usually call Builder.object_ 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 ModelDeleted.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ModelDeleted.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ModelDeleted.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ModelDeleted.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ModelDeleted.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ModelDeleted build()
Returns an immutable instance of ModelDeleted.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .deleted() .object_()
-
-
-
-