/* Options: Date: 2026-07-08 20:24:48 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: QcHoldPointReleaseRequest.* //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}/hold-points/{QcHoldPointID}/release", Verbs="POST,OPTIONS") public static class QcHoldPointReleaseRequest implements IReturn { public Integer ProjectID = null; public Integer QcHoldPointID = null; public String Notes = null; public Integer getProjectID() { return ProjectID; } public QcHoldPointReleaseRequest setProjectID(Integer value) { this.ProjectID = value; return this; } public Integer getQcHoldPointID() { return QcHoldPointID; } public QcHoldPointReleaseRequest setQcHoldPointID(Integer value) { this.QcHoldPointID = value; return this; } public String getNotes() { return Notes; } public QcHoldPointReleaseRequest setNotes(String value) { this.Notes = value; return this; } private static Object responseType = QcHoldPointResponse.class; public Object getResponseType() { return responseType; } } public static class QcHoldPointResponse { public ResponseStatus ResponseStatus = null; public QcHoldPoint HoldPoint = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public QcHoldPointResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public QcHoldPoint getHoldPoint() { return HoldPoint; } public QcHoldPointResponse setHoldPoint(QcHoldPoint value) { this.HoldPoint = value; return this; } } public static class QcHoldPoint { public Integer QcHoldPointID = null; public UUID QcHoldPointUID = null; public Integer ProjectID = null; public String Description = null; public String ResponsibleParty = null; public String CostCode = null; public Date ScheduledDate = null; public String Status = null; public String ReleasedBy = null; public Date ReleasedAt = null; public String Notes = null; public String CreatedBy = null; public Date CreatedAt = null; public Date UpdatedAt = null; public Integer getQcHoldPointID() { return QcHoldPointID; } public QcHoldPoint setQcHoldPointID(Integer value) { this.QcHoldPointID = value; return this; } public UUID getQcHoldPointUID() { return QcHoldPointUID; } public QcHoldPoint setQcHoldPointUID(UUID value) { this.QcHoldPointUID = value; return this; } public Integer getProjectID() { return ProjectID; } public QcHoldPoint setProjectID(Integer value) { this.ProjectID = value; return this; } public String getDescription() { return Description; } public QcHoldPoint setDescription(String value) { this.Description = value; return this; } public String getResponsibleParty() { return ResponsibleParty; } public QcHoldPoint setResponsibleParty(String value) { this.ResponsibleParty = value; return this; } public String getCostCode() { return CostCode; } public QcHoldPoint setCostCode(String value) { this.CostCode = value; return this; } public Date getScheduledDate() { return ScheduledDate; } public QcHoldPoint setScheduledDate(Date value) { this.ScheduledDate = value; return this; } public String getStatus() { return Status; } public QcHoldPoint setStatus(String value) { this.Status = value; return this; } public String getReleasedBy() { return ReleasedBy; } public QcHoldPoint setReleasedBy(String value) { this.ReleasedBy = value; return this; } public Date getReleasedAt() { return ReleasedAt; } public QcHoldPoint setReleasedAt(Date value) { this.ReleasedAt = value; return this; } public String getNotes() { return Notes; } public QcHoldPoint setNotes(String value) { this.Notes = value; return this; } public String getCreatedBy() { return CreatedBy; } public QcHoldPoint setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public QcHoldPoint setCreatedAt(Date value) { this.CreatedAt = value; return this; } public Date getUpdatedAt() { return UpdatedAt; } public QcHoldPoint setUpdatedAt(Date value) { this.UpdatedAt = value; return this; } } }