/* Options: Date: 2024-05-10 01:49:09 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ThrowValidation.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/throwvalidation") open class ThrowValidation : IReturn { var age:Int? = null var required:String? = null var email:String? = null companion object { private val responseType = ThrowValidationResponse::class.java } override fun getResponseType(): Any? = ThrowValidation.responseType } open class ThrowValidationResponse { var age:Int? = null var required:String? = null var email:String? = null var responseStatus:ResponseStatus? = null }