/* Options: Date: 2026-06-23 00:03:01 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: WorkerAppCrewRequest.* //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/crew", Verbs="GET,OPTIONS") public static class WorkerAppCrewRequest implements IReturn { public String Date = null; public String getDate() { return Date; } public WorkerAppCrewRequest setDate(String value) { this.Date = value; return this; } private static Object responseType = WorkerAppCrewResponse.class; public Object getResponseType() { return responseType; } } public static class WorkerAppCrewResponse { public ResponseStatus ResponseStatus = null; public Boolean IsCrewLead = null; public String DateLabel = null; public ArrayList Rows = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public WorkerAppCrewResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean getIsCrewLead() { return IsCrewLead; } public WorkerAppCrewResponse setIsCrewLead(Boolean value) { this.IsCrewLead = value; return this; } public String getDateLabel() { return DateLabel; } public WorkerAppCrewResponse setDateLabel(String value) { this.DateLabel = value; return this; } public ArrayList getRows() { return Rows; } public WorkerAppCrewResponse setRows(ArrayList value) { this.Rows = value; return this; } } public static class WorkerCrewRow { public Integer ContactID = null; public String WorkerName = null; public String Phone = null; public Integer JobID = null; public String Status = null; public String PropertyName = null; public String Address = null; public Integer getContactID() { return ContactID; } public WorkerCrewRow setContactID(Integer value) { this.ContactID = value; return this; } public String getWorkerName() { return WorkerName; } public WorkerCrewRow setWorkerName(String value) { this.WorkerName = value; return this; } public String getPhone() { return Phone; } public WorkerCrewRow setPhone(String value) { this.Phone = value; return this; } public Integer getJobID() { return JobID; } public WorkerCrewRow setJobID(Integer value) { this.JobID = value; return this; } public String getStatus() { return Status; } public WorkerCrewRow setStatus(String value) { this.Status = value; return this; } public String getPropertyName() { return PropertyName; } public WorkerCrewRow setPropertyName(String value) { this.PropertyName = value; return this; } public String getAddress() { return Address; } public WorkerCrewRow setAddress(String value) { this.Address = value; return this; } } }