Package io.imagekit.models.files.bulk
Class BulkDeleteResponse.Builder
-
- All Implemented Interfaces:
public final class BulkDeleteResponse.BuilderA builder for BulkDeleteResponse.
-
-
Method Summary
-
-
Method Detail
-
successfullyDeletedFileIds
final BulkDeleteResponse.Builder successfullyDeletedFileIds(List<String> successfullyDeletedFileIds)
An array of fileIds that were successfully deleted.
-
successfullyDeletedFileIds
final BulkDeleteResponse.Builder successfullyDeletedFileIds(JsonField<List<String>> successfullyDeletedFileIds)
Sets Builder.successfullyDeletedFileIds to an arbitrary JSON value.
You should usually call Builder.successfullyDeletedFileIds with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addSuccessfullyDeletedFileId
final BulkDeleteResponse.Builder addSuccessfullyDeletedFileId(String successfullyDeletedFileId)
Adds a single String to successfullyDeletedFileIds.
-
additionalProperties
final BulkDeleteResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BulkDeleteResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BulkDeleteResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BulkDeleteResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BulkDeleteResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BulkDeleteResponse build()
Returns an immutable instance of BulkDeleteResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-