/* Options: Date: 2024-05-15 08:37:57 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: Ping.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/ping") open class Ping : IReturn { companion object { private val responseType = PingResponse::class.java } override fun getResponseType(): Any? = Ping.responseType } open class PingResponse { var responses:HashMap = HashMap() var responseStatus:ResponseStatus? = null }