/* Options: Date: 2026-06-22 20:28:53 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: ProjectQuotesRequest.* //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/project/{ProjectUID}/quotes", Verbs="GET,OPTIONS") public static class ProjectQuotesRequest implements IReturn { public UUID ProjectUID = null; public UUID getProjectUID() { return ProjectUID; } public ProjectQuotesRequest setProjectUID(UUID value) { this.ProjectUID = value; return this; } private static Object responseType = QuoteListResponse.class; public Object getResponseType() { return responseType; } } public static class QuoteListResponse { public ResponseStatus ResponseStatus = null; public ArrayList Quotes = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public QuoteListResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getQuotes() { return Quotes; } public QuoteListResponse setQuotes(ArrayList value) { this.Quotes = value; return this; } } public static class QuoteSummary { public Integer QuoteID = null; public UUID QuoteUID = null; public Integer ProjectID = null; public String Name = null; public String Status = null; public BigDecimal Total = null; public Boolean IsLocked = null; public String ApprovedByName = null; public Date ApprovedAt = null; public Date DeclinedAt = null; public Date ExpiresAt = null; public Date CreatedAt = null; public Integer getQuoteID() { return QuoteID; } public QuoteSummary setQuoteID(Integer value) { this.QuoteID = value; return this; } public UUID getQuoteUID() { return QuoteUID; } public QuoteSummary setQuoteUID(UUID value) { this.QuoteUID = value; return this; } public Integer getProjectID() { return ProjectID; } public QuoteSummary setProjectID(Integer value) { this.ProjectID = value; return this; } public String getName() { return Name; } public QuoteSummary setName(String value) { this.Name = value; return this; } public String getStatus() { return Status; } public QuoteSummary setStatus(String value) { this.Status = value; return this; } public BigDecimal getTotal() { return Total; } public QuoteSummary setTotal(BigDecimal value) { this.Total = value; return this; } public Boolean getIsLocked() { return IsLocked; } public QuoteSummary setIsLocked(Boolean value) { this.IsLocked = value; return this; } public String getApprovedByName() { return ApprovedByName; } public QuoteSummary setApprovedByName(String value) { this.ApprovedByName = value; return this; } public Date getApprovedAt() { return ApprovedAt; } public QuoteSummary setApprovedAt(Date value) { this.ApprovedAt = value; return this; } public Date getDeclinedAt() { return DeclinedAt; } public QuoteSummary setDeclinedAt(Date value) { this.DeclinedAt = value; return this; } public Date getExpiresAt() { return ExpiresAt; } public QuoteSummary setExpiresAt(Date value) { this.ExpiresAt = value; return this; } public Date getCreatedAt() { return CreatedAt; } public QuoteSummary setCreatedAt(Date value) { this.CreatedAt = value; return this; } } }