Package io.imagekit.models.files.bulk
Class BulkRemoveTagsParams.Body.Builder
-
- All Implemented Interfaces:
public final class BulkRemoveTagsParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
fileIds
final BulkRemoveTagsParams.Body.Builder fileIds(List<String> fileIds)
An array of fileIds from which you want to remove tags.
-
fileIds
final BulkRemoveTagsParams.Body.Builder fileIds(JsonField<List<String>> fileIds)
Sets Builder.fileIds to an arbitrary JSON value.
You should usually call Builder.fileIds with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addFileId
final BulkRemoveTagsParams.Body.Builder addFileId(String fileId)
-
tags
final BulkRemoveTagsParams.Body.Builder tags(List<String> tags)
An array of tags that you want to remove from the files.
-
tags
final BulkRemoveTagsParams.Body.Builder tags(JsonField<List<String>> tags)
Sets Builder.tags to an arbitrary JSON value.
You should usually call Builder.tags with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addTag
final BulkRemoveTagsParams.Body.Builder addTag(String tag)
-
additionalProperties
final BulkRemoveTagsParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BulkRemoveTagsParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BulkRemoveTagsParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BulkRemoveTagsParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BulkRemoveTagsParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BulkRemoveTagsParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.fileIds() .tags()
-
-
-
-