/* Options: Date: 2026-08-01 04:17:07 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: CoverageSelfShiftsRequest.* //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/coverage/self/shifts", Verbs="GET,OPTIONS") public static class CoverageSelfShiftsRequest implements IReturn { public Integer ContactID = null; public Integer getContactID() { return ContactID; } public CoverageSelfShiftsRequest setContactID(Integer value) { this.ContactID = value; return this; } private static Object responseType = CoverageSelfShiftsResponse.class; public Object getResponseType() { return responseType; } } public static class CoverageSelfShiftsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Shifts = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CoverageSelfShiftsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getShifts() { return Shifts; } public CoverageSelfShiftsResponse setShifts(ArrayList value) { this.Shifts = value; return this; } } public static class CoverageSelfShift { public Integer WorkerScheduleItemID = null; public String Label = null; public String Site = null; public String Role = null; public Integer getWorkerScheduleItemID() { return WorkerScheduleItemID; } public CoverageSelfShift setWorkerScheduleItemID(Integer value) { this.WorkerScheduleItemID = value; return this; } public String getLabel() { return Label; } public CoverageSelfShift setLabel(String value) { this.Label = value; return this; } public String getSite() { return Site; } public CoverageSelfShift setSite(String value) { this.Site = value; return this; } public String getRole() { return Role; } public CoverageSelfShift setRole(String value) { this.Role = value; return this; } } }