/* Options: Date: 2025-12-06 08:51:34 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: Test.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/test", Verbs="GET") public static 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 String smtp = null; public String getSmtp() { return smtp; } public Test setSmtp(String value) { this.smtp = value; return this; } private static Object responseType = TestResponse.class; public Object getResponseType() { return responseType; } } public static class TestResponse { public String environment = null; public HashMap tests = null; public Boolean wasSuccessful = null; public String db = null; public String getEnvironment() { return environment; } public TestResponse setEnvironment(String value) { this.environment = value; return this; } public HashMap getTests() { return tests; } public TestResponse setTests(HashMap value) { this.tests = value; return this; } public Boolean isWasSuccessful() { return wasSuccessful; } public TestResponse setWasSuccessful(Boolean value) { this.wasSuccessful = value; return this; } public String getDb() { return db; } public TestResponse setDb(String value) { this.db = value; return this; } } public static class TestResult { public Boolean wasSuccessful = null; public String description = null; public Boolean isWasSuccessful() { return wasSuccessful; } public TestResult setWasSuccessful(Boolean value) { this.wasSuccessful = value; return this; } public String getDescription() { return description; } public TestResult setDescription(String value) { this.description = value; return this; } } }