/* Options: Date: 2026-05-11 08:49:40 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: GetDebugHeaders.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } // @Route("/qry/debug/headers") export class GetDebugHeaders implements IReturn<{ [index:string]: string; }> { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetDebugHeaders'; } public getMethod() { return 'POST'; } public createResponse() { return new { [index:string]: string; }(); } }