/* Options: Date: 2025-12-06 06:21:06 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAds.* //ExcludeTypes: //DefaultImports: */ 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(); } }