/* Options: Date: 2025-12-06 05:26:34 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: GetDebugHeaders.* //ExcludeTypes: //DefaultImports: */ 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; }(); } }