/* Options: Date: 2024-05-15 22:11:26 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: InvalidateLastAccessToken.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/jwt-invalidate") open class InvalidateLastAccessToken : IReturn { companion object { private val responseType = EmptyResponse::class.java } override fun getResponseType(): Any? = InvalidateLastAccessToken.responseType } @DataContract open class EmptyResponse { @DataMember(Order=1) var responseStatus:ResponseStatus? = null }