/* Options: Date: 2026-05-11 08:50:52 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bettor.webhop.biz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAds.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class Localization { public ln?: string; public value?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Message { public id?: string; public localizations?: { [index:string]: Localization; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Advertisement { public id?: string; public messages?: { [index:string]: Message; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/ads", "GET") // @Route("/ads/{Id}", "GET") export class GetAds implements IReturn { public id?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAds'; } public getMethod() { return 'GET'; } public createResponse() { return new Advertisement(); } }