/* Options: Date: 2025-12-06 06:17:12 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //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 { 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; } } }