/* Options: Date: 2025-12-06 08:52:43 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: PlaceDeleteLogoRequest.* //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-logo", Verbs="POST") public static class PlaceDeleteLogoRequest implements IReturn, IPost, IHasPlaceId { public Long placeId = null; public Long getPlaceId() { return placeId; } public PlaceDeleteLogoRequest setPlaceId(Long value) { this.placeId = value; return this; } private static Object responseType = PlaceDeleteLogoResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceDeleteLogoResponse { public CloudBlob deletedLogo = null; public CloudBlob getDeletedLogo() { return deletedLogo; } public PlaceDeleteLogoResponse setDeletedLogo(CloudBlob value) { this.deletedLogo = 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; } }