/* Options: Date: 2025-12-06 10:23: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: JobTypeRequest.* //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/JobType", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/JobType/{JobTypeID}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class JobTypeRequest implements IReturn { public Integer JobTypeID = null; public ArrayList JobType = new ArrayList(); public Integer getJobTypeID() { return JobTypeID; } public JobTypeRequest setJobTypeID(Integer value) { this.JobTypeID = value; return this; } public ArrayList getJobType() { return JobType; } public JobTypeRequest setJobType(ArrayList value) { this.JobType = value; return this; } private static Object responseType = JobTypeResponse.class; public Object getResponseType() { return responseType; } } public static class JobTypeResponse { public ResponseStatus ResponseStatus = null; public ArrayList JobType = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public JobTypeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getJobType() { return JobType; } public JobTypeResponse setJobType(ArrayList value) { this.JobType = value; return this; } } public static class JobType { public Integer JobTypeID = null; public String JobTypeName = null; public String JobTypeDescription = null; public Short SortOrder = null; public Integer getJobTypeID() { return JobTypeID; } public JobType setJobTypeID(Integer value) { this.JobTypeID = value; return this; } public String getJobTypeName() { return JobTypeName; } public JobType setJobTypeName(String value) { this.JobTypeName = value; return this; } public String getJobTypeDescription() { return JobTypeDescription; } public JobType setJobTypeDescription(String value) { this.JobTypeDescription = value; return this; } public Short getSortOrder() { return SortOrder; } public JobType setSortOrder(Short value) { this.SortOrder = value; return this; } } }