/* Options: Date: 2026-09-23 00:15:00 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: EstimateRevisionCreateRequest.* //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/Rfp/{RfpDocumentUID}/Estimate/Revisions", Verbs="POST,OPTIONS") public static class EstimateRevisionCreateRequest implements IReturn { public UUID RfpDocumentUID = null; public String Label = null; public String Reason = null; public UUID getRfpDocumentUID() { return RfpDocumentUID; } public EstimateRevisionCreateRequest setRfpDocumentUID(UUID value) { this.RfpDocumentUID = value; return this; } public String getLabel() { return Label; } public EstimateRevisionCreateRequest setLabel(String value) { this.Label = value; return this; } public String getReason() { return Reason; } public EstimateRevisionCreateRequest setReason(String value) { this.Reason = value; return this; } private static Object responseType = EstimateRevisionListResponse.class; public Object getResponseType() { return responseType; } } public static class EstimateRevisionListResponse { public ResponseStatus ResponseStatus = null; public ArrayList Revisions = new ArrayList(); public Integer RevisionNo = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public EstimateRevisionListResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getRevisions() { return Revisions; } public EstimateRevisionListResponse setRevisions(ArrayList value) { this.Revisions = value; return this; } public Integer getRevisionNo() { return RevisionNo; } public EstimateRevisionListResponse setRevisionNo(Integer value) { this.RevisionNo = value; return this; } } public static class EstimateRevision { public Integer EstimateRevisionID = null; public Integer RfpDocumentID = null; public Integer RevisionNo = null; public String Label = null; public String Reason = null; public String Trigger = null; public BigDecimal TotalAmount = null; public Integer LineCount = null; public String CreatedBy = null; public Date CreatedAt = null; public String SnapshotJson = null; public Integer getEstimateRevisionID() { return EstimateRevisionID; } public EstimateRevision setEstimateRevisionID(Integer value) { this.EstimateRevisionID = value; return this; } public Integer getRfpDocumentID() { return RfpDocumentID; } public EstimateRevision setRfpDocumentID(Integer value) { this.RfpDocumentID = value; return this; } public Integer getRevisionNo() { return RevisionNo; } public EstimateRevision setRevisionNo(Integer value) { this.RevisionNo = value; return this; } public String getLabel() { return Label; } public EstimateRevision setLabel(String value) { this.Label = value; return this; } public String getReason() { return Reason; } public EstimateRevision setReason(String value) { this.Reason = value; return this; } public String getTrigger() { return Trigger; } public EstimateRevision setTrigger(String value) { this.Trigger = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public EstimateRevision setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public Integer getLineCount() { return LineCount; } public EstimateRevision setLineCount(Integer value) { this.LineCount = value; return this; } public String getCreatedBy() { return CreatedBy; } public EstimateRevision setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreatedAt() { return CreatedAt; } public EstimateRevision setCreatedAt(Date value) { this.CreatedAt = value; return this; } public String getSnapshotJson() { return SnapshotJson; } public EstimateRevision setSnapshotJson(String value) { this.SnapshotJson = value; return this; } } }