/* Options: Date: 2025-12-06 08:53:40 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: LotteryEditWinnerRequest.* //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/edit-winner", Verbs="PUT") public static class LotteryEditWinnerRequest implements IReturn, IPut { public Long lotteryId = null; public String winnerToDisplay = null; public Long getLotteryId() { return lotteryId; } public LotteryEditWinnerRequest setLotteryId(Long value) { this.lotteryId = value; return this; } public String getWinnerToDisplay() { return winnerToDisplay; } public LotteryEditWinnerRequest setWinnerToDisplay(String value) { this.winnerToDisplay = value; return this; } private static Object responseType = LotteryEditWinnerResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryEditWinnerResponse { public Date updatedAt = null; public Date getUpdatedAt() { return updatedAt; } public LotteryEditWinnerResponse setUpdatedAt(Date value) { this.updatedAt = value; return this; } } }