Package io.imagekit.models.folders
Class FolderDeleteParams.Body.Builder
-
- All Implemented Interfaces:
public final class FolderDeleteParams.Body.BuilderA builder for Body.
-
-
Method Summary
Modifier and Type Method Description final FolderDeleteParams.Body.BuilderfolderPath(String folderPath)Full path to the folder you want to delete. final FolderDeleteParams.Body.BuilderfolderPath(JsonField<String> folderPath)Sets Builder.folderPath to an arbitrary JSON value. final FolderDeleteParams.Body.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final FolderDeleteParams.Body.BuilderputAdditionalProperty(String key, JsonValue value)final FolderDeleteParams.Body.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final FolderDeleteParams.Body.BuilderremoveAdditionalProperty(String key)final FolderDeleteParams.Body.BuilderremoveAllAdditionalProperties(Set<String> keys)final FolderDeleteParams.Bodybuild()Returns an immutable instance of Body. -
-
Method Detail
-
folderPath
final FolderDeleteParams.Body.Builder folderPath(String folderPath)
Full path to the folder you want to delete. For example
/folder/to/delete/.
-
folderPath
final FolderDeleteParams.Body.Builder folderPath(JsonField<String> folderPath)
Sets Builder.folderPath to an arbitrary JSON value.
You should usually call Builder.folderPath with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final FolderDeleteParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FolderDeleteParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FolderDeleteParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FolderDeleteParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FolderDeleteParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FolderDeleteParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.folderPath()
-
-
-
-