/* Options: Date: 2026-06-23 00:02:25 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: QuoteScopeRequest.* //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}/quote-scope", Verbs="GET,OPTIONS") public static class QuoteScopeRequest implements IReturn { public UUID ProjectUID = null; public UUID getProjectUID() { return ProjectUID; } public QuoteScopeRequest setProjectUID(UUID value) { this.ProjectUID = value; return this; } private static Object responseType = QuoteScopeResponse.class; public Object getResponseType() { return responseType; } } public static class QuoteScopeResponse { public ResponseStatus ResponseStatus = null; public ArrayList ScopeItems = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public QuoteScopeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getScopeItems() { return ScopeItems; } public QuoteScopeResponse setScopeItems(ArrayList value) { this.ScopeItems = value; return this; } } public static class QuoteScopeItem { public String ItemType = null; public Integer SourceRefId = null; public Integer JobID = null; public String JobName = null; public String Name = null; public BigDecimal Quantity = null; public BigDecimal UnitPrice = null; public String getItemType() { return ItemType; } public QuoteScopeItem setItemType(String value) { this.ItemType = value; return this; } public Integer getSourceRefId() { return SourceRefId; } public QuoteScopeItem setSourceRefId(Integer value) { this.SourceRefId = value; return this; } public Integer getJobID() { return JobID; } public QuoteScopeItem setJobID(Integer value) { this.JobID = value; return this; } public String getJobName() { return JobName; } public QuoteScopeItem setJobName(String value) { this.JobName = value; return this; } public String getName() { return Name; } public QuoteScopeItem setName(String value) { this.Name = value; return this; } public BigDecimal getQuantity() { return Quantity; } public QuoteScopeItem setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitPrice() { return UnitPrice; } public QuoteScopeItem setUnitPrice(BigDecimal value) { this.UnitPrice = value; return this; } } }