/* Options: Date: 2025-12-06 06:33:12 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.1fetch.co.za //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 var DebugMode:Boolean? = null var ServerGC:Boolean? = null } open class TestResult { var WasSuccessful:Boolean? = null var Description:String? = null }