/* Options: Date: 2024-05-18 17:56:49 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Secured.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/secured") @ValidateRequest(Validator="IsAuthenticated") open class Secured : IReturn { var name:String? = null companion object { private val responseType = SecuredResponse::class.java } override fun getResponseType(): Any? = Secured.responseType } open class SecuredResponse { var result:String? = null var responseStatus:ResponseStatus? = null }