/* Options: Date: 2025-12-06 07:07: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: LotteryGetOverviewRequest.* //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/get_overview", Verbs="GET") public static class LotteryGetOverviewRequest implements IReturn, IGet { private static Object responseType = LotteryGetOverviewResponse.class; public Object getResponseType() { return responseType; } } public static class LotteryGetOverviewResponse { public Long draftCount = null; public Long publishedCount = null; public Long archivedCount = null; public Long getDraftCount() { return draftCount; } public LotteryGetOverviewResponse setDraftCount(Long value) { this.draftCount = value; return this; } public Long getPublishedCount() { return publishedCount; } public LotteryGetOverviewResponse setPublishedCount(Long value) { this.publishedCount = value; return this; } public Long getArchivedCount() { return archivedCount; } public LotteryGetOverviewResponse setArchivedCount(Long value) { this.archivedCount = value; return this; } } }