/* Options: Date: 2025-12-06 08:07:48 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: LotteryDeleteImageRequest.* //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="/lottery/image/upload", Verbs="DELETE") public static class LotteryDeleteImageRequest implements IReturn, IDelete { public Long lotteryId = null; public Long lotteryImageId = null; public Long getLotteryId() { return lotteryId; } public LotteryDeleteImageRequest setLotteryId(Long value) { this.lotteryId = value; return this; } public Long getLotteryImageId() { return lotteryImageId; } public LotteryDeleteImageRequest setLotteryImageId(Long value) { this.lotteryImageId = value; return this; } private static Object responseType = LotteryDeleteImageResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryDeleteImageResponse { public LotteryImageDto deletedLotteryImage = null; public LotteryImageDto getDeletedLotteryImage() { return deletedLotteryImage; } public LotteryDeleteImageResponse setDeletedLotteryImage(LotteryImageDto value) { this.deletedLotteryImage = value; return this; } } public static class LotteryImageDto { public Long id = null; public ImageUrls imageUrl = null; public Integer position = null; public Long getId() { return id; } public LotteryImageDto setId(Long value) { this.id = value; return this; } public ImageUrls getImageUrl() { return imageUrl; } public LotteryImageDto setImageUrl(ImageUrls value) { this.imageUrl = value; return this; } public Integer getPosition() { return position; } public LotteryImageDto setPosition(Integer value) { this.position = 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; } } }