/* Options: Date: 2025-12-06 07:02:05 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: ProjectProfitLossRequest.* //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/ProfitLoss/{ProjectID}/{ProfitLossStartDate}/{ProfitLossEndDate}", Verbs="GET,OPTIONS") public static class ProjectProfitLossRequest implements IReturn { public Integer ProjectID = null; public Date ProfitLossStartDate = null; public Date ProfitLossEndDate = null; public Integer getProjectID() { return ProjectID; } public ProjectProfitLossRequest setProjectID(Integer value) { this.ProjectID = value; return this; } public Date getProfitLossStartDate() { return ProfitLossStartDate; } public ProjectProfitLossRequest setProfitLossStartDate(Date value) { this.ProfitLossStartDate = value; return this; } public Date getProfitLossEndDate() { return ProfitLossEndDate; } public ProjectProfitLossRequest setProfitLossEndDate(Date value) { this.ProfitLossEndDate = value; return this; } private static Object responseType = ProjectProfitLossResponse.class; public Object getResponseType() { return responseType; } } public static class ProjectProfitLossResponse { public ResponseStatus ResponseStatus = null; public ProjectCost ProjectProfitLoss = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProjectProfitLossResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ProjectCost getProjectProfitLoss() { return ProjectProfitLoss; } public ProjectProfitLossResponse setProjectProfitLoss(ProjectCost value) { this.ProjectProfitLoss = value; return this; } } public static class ProjectCost { public Integer ProjectID = null; public BigDecimal Budget = null; public BigDecimal CrewCost = null; public BigDecimal EquipmentCost = null; public BigDecimal MaterialCost = null; public BigDecimal TotalCost = null; public BigDecimal BilledCrewCost = null; public BigDecimal BilledEquipmentCost = null; public BigDecimal BilledMaterialCost = null; public BigDecimal BilledTotalCost = null; public Integer getProjectID() { return ProjectID; } public ProjectCost setProjectID(Integer value) { this.ProjectID = value; return this; } public BigDecimal getBudget() { return Budget; } public ProjectCost setBudget(BigDecimal value) { this.Budget = value; return this; } public BigDecimal getCrewCost() { return CrewCost; } public ProjectCost setCrewCost(BigDecimal value) { this.CrewCost = value; return this; } public BigDecimal getEquipmentCost() { return EquipmentCost; } public ProjectCost setEquipmentCost(BigDecimal value) { this.EquipmentCost = value; return this; } public BigDecimal getMaterialCost() { return MaterialCost; } public ProjectCost setMaterialCost(BigDecimal value) { this.MaterialCost = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public ProjectCost setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getBilledCrewCost() { return BilledCrewCost; } public ProjectCost setBilledCrewCost(BigDecimal value) { this.BilledCrewCost = value; return this; } public BigDecimal getBilledEquipmentCost() { return BilledEquipmentCost; } public ProjectCost setBilledEquipmentCost(BigDecimal value) { this.BilledEquipmentCost = value; return this; } public BigDecimal getBilledMaterialCost() { return BilledMaterialCost; } public ProjectCost setBilledMaterialCost(BigDecimal value) { this.BilledMaterialCost = value; return this; } public BigDecimal getBilledTotalCost() { return BilledTotalCost; } public ProjectCost setBilledTotalCost(BigDecimal value) { this.BilledTotalCost = value; return this; } } }