/* Options: Date: 2025-12-06 06:18:04 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Test.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/test", Verbs="GET") open class Test : IReturn { companion object { private val responseType = TestResponse::class.java } override fun getResponseType(): Any? = Test.responseType } open class TestResponse { var Environment:String? = null var Tests:HashMap = HashMap() var WasSuccessful:Boolean? = null var DB:String? = null } open class TestResult { var WasSuccessful:Boolean? = null var Description:String? = null }