/* Options: Date: 2026-07-08 20:21:08 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: QcSummaryRequest.* //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/projects/{ProjectID}/qc-summary", Verbs="GET,OPTIONS") public static class QcSummaryRequest implements IReturn { public Integer ProjectID = null; public Integer getProjectID() { return ProjectID; } public QcSummaryRequest setProjectID(Integer value) { this.ProjectID = value; return this; } private static Object responseType = QcSummaryResponse.class; public Object getResponseType() { return responseType; } } public static class QcSummaryResponse { public ResponseStatus ResponseStatus = null; public Integer ProjectID = null; public QcSummary Summary = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public QcSummaryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Integer getProjectID() { return ProjectID; } public QcSummaryResponse setProjectID(Integer value) { this.ProjectID = value; return this; } public QcSummary getSummary() { return Summary; } public QcSummaryResponse setSummary(QcSummary value) { this.Summary = value; return this; } } public static class QcSummary { public Integer TestsThisMonth = null; public Integer TestsTotal = null; public Integer PassCount = null; public Integer FailCount = null; public Integer GradedCount = null; public Integer PassRate = null; public Integer RetestCount = null; public Integer OpenNcrCount = null; public Integer PendingHoldPoints = null; public Integer getTestsThisMonth() { return TestsThisMonth; } public QcSummary setTestsThisMonth(Integer value) { this.TestsThisMonth = value; return this; } public Integer getTestsTotal() { return TestsTotal; } public QcSummary setTestsTotal(Integer value) { this.TestsTotal = value; return this; } public Integer getPassCount() { return PassCount; } public QcSummary setPassCount(Integer value) { this.PassCount = value; return this; } public Integer getFailCount() { return FailCount; } public QcSummary setFailCount(Integer value) { this.FailCount = value; return this; } public Integer getGradedCount() { return GradedCount; } public QcSummary setGradedCount(Integer value) { this.GradedCount = value; return this; } public Integer getPassRate() { return PassRate; } public QcSummary setPassRate(Integer value) { this.PassRate = value; return this; } public Integer getRetestCount() { return RetestCount; } public QcSummary setRetestCount(Integer value) { this.RetestCount = value; return this; } public Integer getOpenNcrCount() { return OpenNcrCount; } public QcSummary setOpenNcrCount(Integer value) { this.OpenNcrCount = value; return this; } public Integer getPendingHoldPoints() { return PendingHoldPoints; } public QcSummary setPendingHoldPoints(Integer value) { this.PendingHoldPoints = value; return this; } } }