/* Options: Date: 2025-12-06 07:02:49 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: LotteryOrderImagesRequest.* //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/reorder", Verbs="POST") public static class LotteryOrderImagesRequest implements IReturn, IPost { public Long lotteryId = null; public ArrayList lotteryImageIds = new ArrayList(); public Long getLotteryId() { return lotteryId; } public LotteryOrderImagesRequest setLotteryId(Long value) { this.lotteryId = value; return this; } public ArrayList getLotteryImageIds() { return lotteryImageIds; } public LotteryOrderImagesRequest setLotteryImageIds(ArrayList value) { this.lotteryImageIds = value; return this; } private static Object responseType = LotteryOrderImagesResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryOrderImagesResponse { public ArrayList lotteryImages = new ArrayList(); public ArrayList getLotteryImages() { return lotteryImages; } public LotteryOrderImagesResponse setLotteryImages(ArrayList value) { this.lotteryImages = 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; } } }