/* Options: Date: 2025-12-06 07:02:24 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: LotteryEditRequest.* //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", Verbs="PUT") public static class LotteryEditRequest implements IReturn, IPut { public Long id = null; public Date startAt = null; public Date stopAt = null; public String title = null; public String description = null; public String countryCode = null; public Long getId() { return id; } public LotteryEditRequest setId(Long value) { this.id = value; return this; } public Date getStartAt() { return startAt; } public LotteryEditRequest setStartAt(Date value) { this.startAt = value; return this; } public Date getStopAt() { return stopAt; } public LotteryEditRequest setStopAt(Date value) { this.stopAt = value; return this; } public String getTitle() { return title; } public LotteryEditRequest setTitle(String value) { this.title = value; return this; } public String getDescription() { return description; } public LotteryEditRequest setDescription(String value) { this.description = value; return this; } public String getCountryCode() { return countryCode; } public LotteryEditRequest setCountryCode(String value) { this.countryCode = value; return this; } private static Object responseType = LotteryEditResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryEditResponse { public Date updatedAt = null; public Date getUpdatedAt() { return updatedAt; } public LotteryEditResponse setUpdatedAt(Date value) { this.updatedAt = value; return this; } } }