| POST | /v1/workforce/burden |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class BurdenRateSaveRequest
{
public BurdenRate Burden = null;
public BurdenRate getBurden() { return Burden; }
public BurdenRateSaveRequest setBurden(BurdenRate value) { this.Burden = value; return this; }
}
public static class BurdenRate
{
public Integer BurdenRateID = null;
public UUID BranchId = null;
public String ClassCode = null;
public BigDecimal Fica = null;
public BigDecimal FutaSuta = null;
public BigDecimal Wc = null;
public BigDecimal Gl = null;
public Date EffectiveFrom = null;
public BigDecimal BurdenPct = null;
public Integer getBurdenRateID() { return BurdenRateID; }
public BurdenRate setBurdenRateID(Integer value) { this.BurdenRateID = value; return this; }
public UUID getBranchId() { return BranchId; }
public BurdenRate setBranchId(UUID value) { this.BranchId = value; return this; }
public String getClassCode() { return ClassCode; }
public BurdenRate setClassCode(String value) { this.ClassCode = value; return this; }
public BigDecimal getFica() { return Fica; }
public BurdenRate setFica(BigDecimal value) { this.Fica = value; return this; }
public BigDecimal getFutaSuta() { return FutaSuta; }
public BurdenRate setFutaSuta(BigDecimal value) { this.FutaSuta = value; return this; }
public BigDecimal getWc() { return Wc; }
public BurdenRate setWc(BigDecimal value) { this.Wc = value; return this; }
public BigDecimal getGl() { return Gl; }
public BurdenRate setGl(BigDecimal value) { this.Gl = value; return this; }
public Date getEffectiveFrom() { return EffectiveFrom; }
public BurdenRate setEffectiveFrom(Date value) { this.EffectiveFrom = value; return this; }
public BigDecimal getBurdenPct() { return BurdenPct; }
public BurdenRate setBurdenPct(BigDecimal value) { this.BurdenPct = value; return this; }
}
public static class BurdenRatesResponse
{
public ArrayList<BurdenRate> Burden = new ArrayList<BurdenRate>();
public ResponseStatus ResponseStatus = null;
public ArrayList<BurdenRate> getBurden() { return Burden; }
public BurdenRatesResponse setBurden(ArrayList<BurdenRate> value) { this.Burden = value; return this; }
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public BurdenRatesResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
}
}
Java BurdenRateSaveRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/workforce/burden HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Burden:
{
BurdenRateID: 0,
BranchId: 00000000000000000000000000000000,
ClassCode: String,
Fica: 0,
FutaSuta: 0,
Wc: 0,
Gl: 0,
EffectiveFrom: 0001-01-01,
BurdenPct: 0
}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Burden:
[
{
BurdenRateID: 0,
BranchId: 00000000000000000000000000000000,
ClassCode: String,
Fica: 0,
FutaSuta: 0,
Wc: 0,
Gl: 0,
EffectiveFrom: 0001-01-01,
BurdenPct: 0
}
],
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}