/* Options: Date: 2024-05-15 14:07:19 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: TestAuth.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/testauth") open class TestAuth : IReturn { companion object { private val responseType = TestAuthResponse::class.java } override fun getResponseType(): Any? = TestAuth.responseType } open class TestAuthResponse { var userId:String? = null var sessionId:String? = null var userName:String? = null var displayName:String? = null var responseStatus:ResponseStatus? = null }