/* Options: Date: 2026-08-01 04:00:18 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: CoverageSelfTimeOffPostRequest.* //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/timeoff", Verbs="POST,OPTIONS") public static class CoverageSelfTimeOffPostRequest implements IReturn { public String Start = null; public String End = null; public String Type = null; public String Note = null; public String getStart() { return Start; } public CoverageSelfTimeOffPostRequest setStart(String value) { this.Start = value; return this; } public String getEnd() { return End; } public CoverageSelfTimeOffPostRequest setEnd(String value) { this.End = value; return this; } public String getType() { return Type; } public CoverageSelfTimeOffPostRequest setType(String value) { this.Type = value; return this; } public String getNote() { return Note; } public CoverageSelfTimeOffPostRequest setNote(String value) { this.Note = value; return this; } private static Object responseType = CoverageSelfTimeOffResponse.class; public Object getResponseType() { return responseType; } } public static class CoverageSelfTimeOffResponse { public ResponseStatus ResponseStatus = null; public ArrayList Rows = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CoverageSelfTimeOffResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getRows() { return Rows; } public CoverageSelfTimeOffResponse setRows(ArrayList value) { this.Rows = value; return this; } } public static class CoverageSelfTimeOffRow { public Integer WorkerTimeOffID = null; public String Label = null; public String Status = null; public Integer getWorkerTimeOffID() { return WorkerTimeOffID; } public CoverageSelfTimeOffRow setWorkerTimeOffID(Integer value) { this.WorkerTimeOffID = value; return this; } public String getLabel() { return Label; } public CoverageSelfTimeOffRow setLabel(String value) { this.Label = value; return this; } public String getStatus() { return Status; } public CoverageSelfTimeOffRow setStatus(String value) { this.Status = value; return this; } } }