/* Options: Date: 2025-12-06 07:01:31 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: LotteryArchiveRequest.* //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/archived", Verbs="PUT") public static class LotteryArchiveRequest implements IReturn, IPut { public Long lotteryId = null; public Boolean force = null; public Long getLotteryId() { return lotteryId; } public LotteryArchiveRequest setLotteryId(Long value) { this.lotteryId = value; return this; } public Boolean isForce() { return force; } public LotteryArchiveRequest setForce(Boolean value) { this.force = value; return this; } private static Object responseType = LotteryArchiveResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryArchiveResponse { public Date updatedAt = null; public Date getUpdatedAt() { return updatedAt; } public LotteryArchiveResponse setUpdatedAt(Date value) { this.updatedAt = value; return this; } } }