/* Options: Date: 2026-07-08 22:10:21 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: MaterialShortfallsRequest.* //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}/material-shortfalls", Verbs="GET,OPTIONS") public static class MaterialShortfallsRequest implements IReturn { public Integer ProjectID = null; public Integer getProjectID() { return ProjectID; } public MaterialShortfallsRequest setProjectID(Integer value) { this.ProjectID = value; return this; } private static Object responseType = MaterialShortfallsResponse.class; public Object getResponseType() { return responseType; } } public static class MaterialShortfallsResponse { public ResponseStatus ResponseStatus = null; public Integer ProjectID = null; public ArrayList Shortfalls = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public MaterialShortfallsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Integer getProjectID() { return ProjectID; } public MaterialShortfallsResponse setProjectID(Integer value) { this.ProjectID = value; return this; } public ArrayList getShortfalls() { return Shortfalls; } public MaterialShortfallsResponse setShortfalls(ArrayList value) { this.Shortfalls = value; return this; } } public static class MaterialShortfall { public Integer MaterialID = null; public String Name = null; public String MaterialType = null; public BigDecimal OnHand = null; public BigDecimal QtyNeeded = null; public BigDecimal ShortQty = null; public String Unit = null; public BigDecimal UnitPrice = null; public BigDecimal EstUSD = null; public String Vendor = null; public Date JobStartDate = null; public Integer getMaterialID() { return MaterialID; } public MaterialShortfall setMaterialID(Integer value) { this.MaterialID = value; return this; } public String getName() { return Name; } public MaterialShortfall setName(String value) { this.Name = value; return this; } public String getMaterialType() { return MaterialType; } public MaterialShortfall setMaterialType(String value) { this.MaterialType = value; return this; } public BigDecimal getOnHand() { return OnHand; } public MaterialShortfall setOnHand(BigDecimal value) { this.OnHand = value; return this; } public BigDecimal getQtyNeeded() { return QtyNeeded; } public MaterialShortfall setQtyNeeded(BigDecimal value) { this.QtyNeeded = value; return this; } public BigDecimal getShortQty() { return ShortQty; } public MaterialShortfall setShortQty(BigDecimal value) { this.ShortQty = value; return this; } public String getUnit() { return Unit; } public MaterialShortfall setUnit(String value) { this.Unit = value; return this; } public BigDecimal getUnitPrice() { return UnitPrice; } public MaterialShortfall setUnitPrice(BigDecimal value) { this.UnitPrice = value; return this; } public BigDecimal getEstUSD() { return EstUSD; } public MaterialShortfall setEstUSD(BigDecimal value) { this.EstUSD = value; return this; } public String getVendor() { return Vendor; } public MaterialShortfall setVendor(String value) { this.Vendor = value; return this; } public Date getJobStartDate() { return JobStartDate; } public MaterialShortfall setJobStartDate(Date value) { this.JobStartDate = value; return this; } } }