/* Options: Date: 2025-12-06 08:51:35 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //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 { /** @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(); } }