/* Options: Date: 2025-12-11 09:07:44 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestLogging.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class TestResult { public wasSuccessful: boolean; public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class TestResponse { public environment: string; public tests: { [index: string]: TestResult; }; public wasSuccessful: boolean; public db: string; public debugMode: boolean; public serverGC: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/test/logging", "GET") export class TestLogging implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'TestLogging'; } public getMethod() { return 'GET'; } public createResponse() { return new TestResponse(); } }