/* Options: Date: 2026-07-08 21:30:33 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: QcTestDetailRequest.* //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-tests/{QcTestID}", Verbs="GET,OPTIONS") public static class QcTestDetailRequest implements IReturn { public Integer ProjectID = null; public Integer QcTestID = null; public Integer getProjectID() { return ProjectID; } public QcTestDetailRequest setProjectID(Integer value) { this.ProjectID = value; return this; } public Integer getQcTestID() { return QcTestID; } public QcTestDetailRequest setQcTestID(Integer value) { this.QcTestID = value; return this; } private static Object responseType = QcTestResponse.class; public Object getResponseType() { return responseType; } } public static class QcTestResponse { public ResponseStatus ResponseStatus = null; public QcTest Test = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public QcTestResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public QcTest getTest() { return Test; } public QcTestResponse setTest(QcTest value) { this.Test = value; return this; } } public static class QcTest { public Integer QcTestID = null; public UUID QcTestUID = null; public Integer ProjectID = null; public String TestNo = null; public String TestType = null; public String Location = null; public String CostCode = null; public String Spec = null; public String TargetValue = null; public String ResultValue = null; public String Result = null; public String Lab = null; public String ReportName = null; public String Notes = null; public Date TestedAt = null; public String CreatedBy = null; public Date CreatedAt = null; public Date UpdatedAt = null; public Integer NcrCount = null; public Integer getQcTestID() { return QcTestID; } public QcTest setQcTestID(Integer value) { this.QcTestID = value; return this; } public UUID getQcTestUID() { return QcTestUID; } public QcTest setQcTestUID(UUID value) { this.QcTestUID = value; return this; } public Integer getProjectID() { return ProjectID; } public QcTest setProjectID(Integer value) { this.ProjectID = value; return this; } public String getTestNo() { return TestNo; } public QcTest setTestNo(String value) { this.TestNo = value; return this; } public String getTestType() { return TestType; } public QcTest setTestType(String value) { this.TestType = value; return this; } public String getLocation() { return Location; } public QcTest setLocation(String value) { this.Location = value; return this; } public String getCostCode() { return CostCode; } public QcTest setCostCode(String value) { this.CostCode = value; return this; } public String getSpec() { return Spec; } public QcTest setSpec(String value) { this.Spec = value; return this; } public String getTargetValue() { return TargetValue; } public QcTest setTargetValue(String value) { this.TargetValue = value; return this; } public String getResultValue() { return ResultValue; } public QcTest setResultValue(String value) { this.ResultValue = value; return this; } public String getResult() { return Result; } public QcTest setResult(String value) { this.Result = value; return this; } public String getLab() { return Lab; } public QcTest setLab(String value) { this.Lab = value; return this; } public String getReportName() { return ReportName; } public QcTest setReportName(String value) { this.ReportName = value; return this; } public String getNotes() { return Notes; } public QcTest setNotes(String value) { this.Notes = value; return this; } public Date getTestedAt() { return TestedAt; } public QcTest setTestedAt(Date value) { this.TestedAt = value; return this; } public String getCreatedBy() { return CreatedBy; } public QcTest setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public QcTest setCreatedAt(Date value) { this.CreatedAt = value; return this; } public Date getUpdatedAt() { return UpdatedAt; } public QcTest setUpdatedAt(Date value) { this.UpdatedAt = value; return this; } public Integer getNcrCount() { return NcrCount; } public QcTest setNcrCount(Integer value) { this.NcrCount = value; return this; } } }