/* Options: Date: 2025-12-06 07:22:14 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: ProjectStatusRequest.* //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/ProjectStatus", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/ProjectStatus/{ProjectStatusID}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class ProjectStatusRequest implements IReturn { public Integer ProjectStatusID = null; public ArrayList ProjectStatus = new ArrayList(); public Integer getProjectStatusID() { return ProjectStatusID; } public ProjectStatusRequest setProjectStatusID(Integer value) { this.ProjectStatusID = value; return this; } public ArrayList getProjectStatus() { return ProjectStatus; } public ProjectStatusRequest setProjectStatus(ArrayList value) { this.ProjectStatus = value; return this; } private static Object responseType = ProjectStatusResponse.class; public Object getResponseType() { return responseType; } } public static class ProjectStatusResponse { public ResponseStatus ResponseStatus = null; public ArrayList ProjectStatus = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProjectStatusResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getProjectStatus() { return ProjectStatus; } public ProjectStatusResponse setProjectStatus(ArrayList value) { this.ProjectStatus = value; return this; } } public static class ProjectStatus { public Short ProjectStatusID = null; public String StatusName = null; public String StatusDescription = null; public Short ProgressionOrder = null; public Boolean EndOfLine = null; public Short getProjectStatusID() { return ProjectStatusID; } public ProjectStatus setProjectStatusID(Short value) { this.ProjectStatusID = value; return this; } public String getStatusName() { return StatusName; } public ProjectStatus setStatusName(String value) { this.StatusName = value; return this; } public String getStatusDescription() { return StatusDescription; } public ProjectStatus setStatusDescription(String value) { this.StatusDescription = value; return this; } public Short getProgressionOrder() { return ProgressionOrder; } public ProjectStatus setProgressionOrder(Short value) { this.ProgressionOrder = value; return this; } public Boolean isEndOfLine() { return EndOfLine; } public ProjectStatus setEndOfLine(Boolean value) { this.EndOfLine = value; return this; } } }