/* Options: Date: 2025-12-06 08:32:24 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CurrentCheckInRequest.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/v1/TimeTracker/GetCurrentCheckIn/{AgentId}", Verbs="GET,OPTIONS") public static class CurrentCheckInRequest implements IReturn { public Integer AgentId = null; public Integer getAgentId() { return AgentId; } public CurrentCheckInRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = CurrentCheckInResponse.class; public Object getResponseType() { return responseType; } } public static class CurrentCheckInResponse { public ResponseStatus ResponseStatus = null; public ActiveCheckin result = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public CurrentCheckInResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ActiveCheckin getResult() { return result; } public CurrentCheckInResponse setResult(ActiveCheckin value) { this.result = value; return this; } } public static class ActiveCheckin { public Date CheckInTime = null; public Integer CheckInId = null; public Date getCheckInTime() { return CheckInTime; } public ActiveCheckin setCheckInTime(Date value) { this.CheckInTime = value; return this; } public Integer getCheckInId() { return CheckInId; } public ActiveCheckin setCheckInId(Integer value) { this.CheckInId = value; return this; } } }