/* Options: Date: 2025-12-06 07:01:28 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: LotteryOrderImagesRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPost { } export class ImageUrls { public preview: string; public small: string; public medium: string; public large: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LotteryImageDto { public id?: number; public imageUrl: ImageUrls; public position?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LotteryOrderImagesResponse { public lotteryImages: LotteryImageDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/lottery/image/reorder", "POST") export class LotteryOrderImagesRequest implements IReturn, IPost { public lotteryId?: number; public lotteryImageIds: number[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LotteryOrderImagesRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new LotteryOrderImagesResponse(); } } }