/* Options: Date: 2025-12-06 07:07:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LotteryGetOverviewRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class LotteryGetOverviewResponse { public draftCount?: number; public publishedCount?: number; public archivedCount?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/lottery/get_overview", "GET") export class LotteryGetOverviewRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LotteryGetOverviewRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new LotteryGetOverviewResponse(); } } }