/* Options: Date: 2025-12-11 08:22:03 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://legalguard-api-dev.happen.zone //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: IsAvailable.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/test/available") open class IsAvailable : IReturn { companion object { private val responseType = IsAvailableResponse::class.java } override fun getResponseType(): Any? = IsAvailable.responseType } open class IsAvailableResponse { var available:Boolean? = null }