/* Options: Date: 2025-12-06 08:16:32 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CurrentCheckInRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/TimeTracker/GetCurrentCheckIn/{AgentId}", Verbs="GET,OPTIONS") open class CurrentCheckInRequest : IReturn { open var AgentId:Int? = null companion object { private val responseType = CurrentCheckInResponse::class.java } override fun getResponseType(): Any? = CurrentCheckInRequest.responseType } open class CurrentCheckInResponse { open var ResponseStatus:ResponseStatus? = null open var result:ActiveCheckin? = null } open class ActiveCheckin { open var CheckInTime:Date? = null open var CheckInId:Int? = null }