/* Options: Date: 2025-12-06 07:49:30 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: PlaceUploadLogoRequest.* //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/upload_logo", Verbs="POST") public static class PlaceUploadLogoRequest implements IReturn, IPost, IHasPlaceId { public Long placeId = null; public String base64EncodedImageLogo = null; public Long getPlaceId() { return placeId; } public PlaceUploadLogoRequest setPlaceId(Long value) { this.placeId = value; return this; } public String getBase64EncodedImageLogo() { return base64EncodedImageLogo; } public PlaceUploadLogoRequest setBase64EncodedImageLogo(String value) { this.base64EncodedImageLogo = value; return this; } private static Object responseType = PlaceUploadLogoResponse.class; public Object getResponseType() { return responseType; } } public static class PlaceUploadLogoResponse { public CloudBlob image = null; public ImageUrls imageUrls = null; public CloudBlob getImage() { return image; } public PlaceUploadLogoResponse setImage(CloudBlob value) { this.image = value; return this; } public ImageUrls getImageUrls() { return imageUrls; } public PlaceUploadLogoResponse setImageUrls(ImageUrls value) { this.imageUrls = 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 class ImageUrls { public String preview = null; public String small = null; public String medium = null; public String large = null; public String getPreview() { return preview; } public ImageUrls setPreview(String value) { this.preview = value; return this; } public String getSmall() { return small; } public ImageUrls setSmall(String value) { this.small = value; return this; } public String getMedium() { return medium; } public ImageUrls setMedium(String value) { this.medium = value; return this; } public String getLarge() { return large; } public ImageUrls setLarge(String value) { this.large = value; return this; } } public static enum DeploymentSlot { Production, Qa, Unstable, Test, Local, Docker; } }