| GET,OPTIONS | /v1/projects/{ProjectID}/material-shortfalls |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class MaterialShortfallsRequest
{
public Integer ProjectID = null;
public Integer getProjectID() { return ProjectID; }
public MaterialShortfallsRequest setProjectID(Integer value) { this.ProjectID = value; return this; }
}
public static class MaterialShortfallsResponse
{
public ResponseStatus ResponseStatus = null;
public Integer ProjectID = null;
public ArrayList<MaterialShortfall> Shortfalls = new ArrayList<MaterialShortfall>();
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<MaterialShortfall> getShortfalls() { return Shortfalls; }
public MaterialShortfallsResponse setShortfalls(ArrayList<MaterialShortfall> 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; }
}
}
Java MaterialShortfallsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/projects/{ProjectID}/material-shortfalls HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<MaterialShortfallsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<ProjectID>0</ProjectID>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
<Shortfalls>
<MaterialShortfall>
<EstUSD>0</EstUSD>
<JobStartDate>0001-01-01T00:00:00</JobStartDate>
<MaterialID>0</MaterialID>
<MaterialType>String</MaterialType>
<Name>String</Name>
<OnHand>0</OnHand>
<QtyNeeded>0</QtyNeeded>
<ShortQty>0</ShortQty>
<Unit>String</Unit>
<UnitPrice>0</UnitPrice>
<Vendor>String</Vendor>
</MaterialShortfall>
</Shortfalls>
</MaterialShortfallsResponse>