/* Options: Date: 2025-12-06 07:01:22 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: LotteryDrawRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPost { } export class UserAddress { public streetName: string; public streetNumber: string; public postalCode: string; public region: string; public countryCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LotteryWinnerDto { public userId?: number; public firstName?: string; public lastName?: string; public homeAddress: UserAddress; public mobilePhone?: string; public mobilePhoneConfirmedAt?: string; public email?: string; public emailConfirmedAt?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LotteryDrawResponseUnion { public winner?: LotteryWinnerDto; public problemExplanationForEndUser?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/lottery/draw", "POST") export class LotteryDrawRequest implements IReturn, IPost { public lotteryId?: number; public forceRedraw?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LotteryDrawRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new LotteryDrawResponseUnion(); } } }