Class AssistantDeleted.Builder
-
- All Implemented Interfaces:
public final class AssistantDeleted.BuilderA builder for AssistantDeleted.
-
-
Method Summary
Modifier and Type Method Description final AssistantDeleted.Builderid(String id)final AssistantDeleted.Builderid(JsonField<String> id)Sets Builder.id to an arbitrary JSON value. final AssistantDeleted.Builderdeleted(Boolean deleted)final AssistantDeleted.Builderdeleted(JsonField<Boolean> deleted)Sets Builder.deleted to an arbitrary JSON value. final AssistantDeleted.Builderobject_(JsonValue object_)Sets the field to an arbitrary JSON value. final AssistantDeleted.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final AssistantDeleted.BuilderputAdditionalProperty(String key, JsonValue value)final AssistantDeleted.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final AssistantDeleted.BuilderremoveAdditionalProperty(String key)final AssistantDeleted.BuilderremoveAllAdditionalProperties(Set<String> keys)final AssistantDeletedbuild()Returns an immutable instance of AssistantDeleted. -
-
Method Detail
-
id
final AssistantDeleted.Builder id(String id)
-
id
final AssistantDeleted.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 AssistantDeleted.Builder deleted(Boolean deleted)
-
deleted
final AssistantDeleted.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 AssistantDeleted.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("assistant.deleted")This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final AssistantDeleted.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AssistantDeleted.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AssistantDeleted.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AssistantDeleted.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AssistantDeleted.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AssistantDeleted build()
Returns an immutable instance of AssistantDeleted.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .deleted()
-
-
-
-