/* Options: Date: 2026-06-22 22:48:11 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: WorkerAppScheduleRequest.* //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/worker/schedule", Verbs="GET,OPTIONS") public static class WorkerAppScheduleRequest implements IReturn { public Integer Days = null; public Integer getDays() { return Days; } public WorkerAppScheduleRequest setDays(Integer value) { this.Days = value; return this; } private static Object responseType = WorkerAppScheduleResponse.class; public Object getResponseType() { return responseType; } } public static class WorkerAppScheduleResponse { public ResponseStatus ResponseStatus = null; public ArrayList Days = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public WorkerAppScheduleResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getDays() { return Days; } public WorkerAppScheduleResponse setDays(ArrayList value) { this.Days = value; return this; } } public static class WorkerScheduleDay { public String Date = null; public String Label = null; public Integer VisitCount = null; public Integer DoneCount = null; public String getDate() { return Date; } public WorkerScheduleDay setDate(String value) { this.Date = value; return this; } public String getLabel() { return Label; } public WorkerScheduleDay setLabel(String value) { this.Label = value; return this; } public Integer getVisitCount() { return VisitCount; } public WorkerScheduleDay setVisitCount(Integer value) { this.VisitCount = value; return this; } public Integer getDoneCount() { return DoneCount; } public WorkerScheduleDay setDoneCount(Integer value) { this.DoneCount = value; return this; } } }