/* Options: Date: 2026-01-12 02:38:49 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qa-business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAdImagesRequest.* //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="/ad/get_image_library", Verbs="GET") public static class GetAdImagesRequest implements IReturn, IGet, IHasAdId { public Long adId = null; public Long getAdId() { return adId; } public GetAdImagesRequest setAdId(Long value) { this.adId = value; return this; } private static Object responseType = GetAdImagesResponse.class; public Object getResponseType() { return responseType; } } public static class GetAdImagesResponse { public ArrayList adImages = new ArrayList(); public ArrayList getAdImages() { return adImages; } public GetAdImagesResponse setAdImages(ArrayList value) { this.adImages = value; return this; } } public static interface IHasAdId { public Long adId = null; } public static class AdImageDto { public Long id = null; public Long adId = null; public CloudBlob image = null; public ImageUrls imageUrls = null; public Integer position = null; public Long getId() { return id; } public AdImageDto setId(Long value) { this.id = value; return this; } public Long getAdId() { return adId; } public AdImageDto setAdId(Long value) { this.adId = value; return this; } public CloudBlob getImage() { return image; } public AdImageDto setImage(CloudBlob value) { this.image = value; return this; } public ImageUrls getImageUrls() { return imageUrls; } public AdImageDto setImageUrls(ImageUrls value) { this.imageUrls = value; return this; } public Integer getPosition() { return position; } public AdImageDto setPosition(Integer value) { this.position = 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 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; } }