/* Options: Date: 2025-12-10 20:26:40 Version: 6.50 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.dev.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 DebugMode: boolean; public ServerGC: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/test", "GET") export class Test implements IReturn { /** * An email address a test email will be sent to */ // @ApiMember(Description="An email address a test email will be sent to") public Smtp: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'Test'; } public getMethod() { return 'GET'; } public createResponse() { return new TestResponse(); } }