/* Options: Date: 2025-12-06 08:57:57 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //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 { /** * An email address a test email will be sent to */ @ApiMember(Description="An email address a test email will be sent to") var smtp:String? = null 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 }