/* Options: Date: 2025-12-11 09:09:14 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TestLogging.* //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/logging", Verbs="GET") open class TestLogging : IReturn { companion object { private val responseType = TestResponse::class.java } override fun getResponseType(): Any? = TestLogging.responseType } open class TestResponse { var environment:String? = null var tests:HashMap = HashMap() var wasSuccessful:Boolean? = null var db:String? = null var debugMode:Boolean? = null var serverGC:Boolean? = null } open class TestResult { var wasSuccessful:Boolean? = null var description:String? = null }