Trendsic Platform Service

<back to all web services

MaterialShortfallsRequest

Requires Authentication
The following routes are available for this service:
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 .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	},
	ProjectID: 0,
	Shortfalls: 
	[
		{
			MaterialID: 0,
			Name: String,
			MaterialType: String,
			OnHand: 0,
			QtyNeeded: 0,
			ShortQty: 0,
			Unit: String,
			UnitPrice: 0,
			EstUSD: 0,
			Vendor: String,
			JobStartDate: 0001-01-01
		}
	]
}