/* Options: Date: 2025-05-06 16:04:05 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LiveBeatRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/system/LiveBeat", Verbs="GET POST") open class LiveBeatRequest : IReturn { var nameOfThread:String? = null companion object { private val responseType = LiveBeatResult::class.java } override fun getResponseType(): Any? = LiveBeatRequest.responseType } open class LiveBeatResult { var utcCachedLastBeat:Date? = null }