/* Options: Date: 2025-12-06 06:59:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PlaceDeleteImageRequest.* //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 BusinessApi { @Route(Path="/place/delete_image", Verbs="POST") public static class PlaceDeleteImageRequest implements IReturn, IPost, IHasPlaceId { public Long placeId = null; public Long getPlaceId() { return placeId; } public PlaceDeleteImageRequest setPlaceId(Long value) { this.placeId = value; return this; } private static Object responseType = PlaceDeleteImageResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceDeleteImageResponse { public CloudBlob deletedImage = null; public CloudBlob getDeletedImage() { return deletedImage; } public PlaceDeleteImageResponse setDeletedImage(CloudBlob value) { this.deletedImage = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } 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; } }