/* Options: Date: 2025-12-06 06:22:14 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Test.* //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 constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/test", "GET") export class Test implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Test'; } public getMethod() { return 'GET'; } public createResponse() { return new TestResponse(); } }