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