/* Options: Date: 2025-12-06 06:30:33 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //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 { /** @description 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(); } }