Class ConversationDeleted.Builder
-
- All Implemented Interfaces:
public final class ConversationDeleted.Builder
A builder for ConversationDeleted.
-
-
Method Summary
-
-
Method Detail
-
id
final ConversationDeleted.Builder id(String id)
-
id
final ConversationDeleted.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 ConversationDeleted.Builder deleted(Boolean deleted)
-
deleted
final ConversationDeleted.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 ConversationDeleted.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("conversation.deleted")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ConversationDeleted.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ConversationDeleted.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ConversationDeleted.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ConversationDeleted.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ConversationDeleted.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ConversationDeleted build()
Returns an immutable instance of ConversationDeleted.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.id() .deleted()
-
-
-
-