/* Options: Date: 2026-03-22 20:54:14 Version: 8.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://guidsapi.bettor.webhop.biz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FetchGuids.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class GuidsResponse { public guids: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/guids") export class FetchGuids implements IReturn { public batchSize: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'FetchGuids'; } public getMethod() { return 'POST'; } public createResponse() { return new GuidsResponse(); } }