Class BulkDeleteParams.Body.Builder
-
- All Implemented Interfaces:
public final class BulkDeleteParams.Body.BuilderA builder for Body.
-
-
Method Summary
Modifier and Type Method Description final BulkDeleteParams.Body.BuilderobjectIds(List<String> objectIds)List of object IDs to delete. final BulkDeleteParams.Body.BuilderobjectIds(JsonField<List<String>> objectIds)Sets Builder.objectIds to an arbitrary JSON value. final BulkDeleteParams.Body.BuilderaddObjectId(String objectId)Adds a single String to objectIds. final BulkDeleteParams.Body.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final BulkDeleteParams.Body.BuilderputAdditionalProperty(String key, JsonValue value)final BulkDeleteParams.Body.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final BulkDeleteParams.Body.BuilderremoveAdditionalProperty(String key)final BulkDeleteParams.Body.BuilderremoveAllAdditionalProperties(Set<String> keys)final BulkDeleteParams.Bodybuild()Returns an immutable instance of Body. -
-
Method Detail
-
objectIds
final BulkDeleteParams.Body.Builder objectIds(List<String> objectIds)
List of object IDs to delete.
-
objectIds
final BulkDeleteParams.Body.Builder objectIds(JsonField<List<String>> objectIds)
Sets Builder.objectIds to an arbitrary JSON value.
You should usually call Builder.objectIds with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addObjectId
final BulkDeleteParams.Body.Builder addObjectId(String objectId)
-
additionalProperties
final BulkDeleteParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BulkDeleteParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BulkDeleteParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BulkDeleteParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BulkDeleteParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BulkDeleteParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.objectIds()
-
-
-
-