/* Options: Date: 2025-12-06 07:51:19 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteCategoryImageRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BackofficeApi { @Route(Path="/category/delete_image", Verbs="DELETE") public static class DeleteCategoryImageRequest implements IReturn, IDelete { public Long categoryId = null; public Long getCategoryId() { return categoryId; } public DeleteCategoryImageRequest setCategoryId(Long value) { this.categoryId = value; return this; } private static Object responseType = DeleteCategoryImageResponse.class; public Object getResponseType() { return responseType; } } public static class DeleteCategoryImageResponse { public CloudBlob deletedImage = null; public CloudBlob getDeletedImage() { return deletedImage; } public DeleteCategoryImageResponse setDeletedImage(CloudBlob value) { this.deletedImage = value; return this; } } public static class CloudBlob { public String publicUrl = null; public String key = null; public DeploymentSlot environment = null; public String bucket = null; public String identifyingSuffix = null; public String mimeType = null; public String getPublicUrl() { return publicUrl; } public CloudBlob setPublicUrl(String value) { this.publicUrl = value; return this; } public String getKey() { return key; } public CloudBlob setKey(String value) { this.key = value; return this; } public DeploymentSlot getEnvironment() { return environment; } public CloudBlob setEnvironment(DeploymentSlot value) { this.environment = value; return this; } public String getBucket() { return bucket; } public CloudBlob setBucket(String value) { this.bucket = value; return this; } public String getIdentifyingSuffix() { return identifyingSuffix; } public CloudBlob setIdentifyingSuffix(String value) { this.identifyingSuffix = value; return this; } public String getMimeType() { return mimeType; } public CloudBlob setMimeType(String value) { this.mimeType = value; return this; } } public static enum DeploymentSlot { Production, Qa, Unstable, Test, Local, Docker; } }