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