/* Options: Date: 2025-12-06 05:22:31 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: JobStatusRequest.* //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/JobStatus", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/JobStatus/{JobStatusID}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class JobStatusRequest implements IReturn { public Integer JobStatusID = null; public ArrayList JobStatus = new ArrayList(); public Integer getJobStatusID() { return JobStatusID; } public JobStatusRequest setJobStatusID(Integer value) { this.JobStatusID = value; return this; } public ArrayList getJobStatus() { return JobStatus; } public JobStatusRequest setJobStatus(ArrayList value) { this.JobStatus = value; return this; } private static Object responseType = JobStatusResponse.class; public Object getResponseType() { return responseType; } } public static class JobStatusResponse { public ResponseStatus ResponseStatus = null; public ArrayList JobStatus = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public JobStatusResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getJobStatus() { return JobStatus; } public JobStatusResponse setJobStatus(ArrayList value) { this.JobStatus = value; return this; } } public static class JobStatus { public Short JobStatusID = null; public String StatusName = null; public String StatusDescription = null; public Short ProgressionOrder = null; public Short getJobStatusID() { return JobStatusID; } public JobStatus setJobStatusID(Short value) { this.JobStatusID = value; return this; } public String getStatusName() { return StatusName; } public JobStatus setStatusName(String value) { this.StatusName = value; return this; } public String getStatusDescription() { return StatusDescription; } public JobStatus setStatusDescription(String value) { this.StatusDescription = value; return this; } public Short getProgressionOrder() { return ProgressionOrder; } public JobStatus setProgressionOrder(Short value) { this.ProgressionOrder = value; return this; } } }