/* Options: Date: 2025-04-04 22:06:33 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //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(Path="/ping", Verbs="GET") open class Ping : IReturn { companion object { private val responseType = StringResponse::class.java } override fun getResponseType(): Any? = Ping.responseType } open class StringResponse { var Value:String? = null }