/* Options: Date: 2025-12-06 08:31:52 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: ProjectUpdateCostRequest.* //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/UpdateProjectCost/", Verbs="POST,PUT,DELETE,OPTIONS") public static class ProjectUpdateCostRequest implements IReturn { public String EditType = null; public Integer ID = null; public BigDecimal Rate = null; public BigDecimal BilledRate = null; public BigDecimal MarkupPercentage = null; public Boolean SameMarkupApplyToAll = null; public String getEditType() { return EditType; } public ProjectUpdateCostRequest setEditType(String value) { this.EditType = value; return this; } public Integer getId() { return ID; } public ProjectUpdateCostRequest setId(Integer value) { this.ID = value; return this; } public BigDecimal getRate() { return Rate; } public ProjectUpdateCostRequest setRate(BigDecimal value) { this.Rate = value; return this; } public BigDecimal getBilledRate() { return BilledRate; } public ProjectUpdateCostRequest setBilledRate(BigDecimal value) { this.BilledRate = value; return this; } public BigDecimal getMarkupPercentage() { return MarkupPercentage; } public ProjectUpdateCostRequest setMarkupPercentage(BigDecimal value) { this.MarkupPercentage = value; return this; } public Boolean isSameMarkupApplyToAll() { return SameMarkupApplyToAll; } public ProjectUpdateCostRequest setSameMarkupApplyToAll(Boolean value) { this.SameMarkupApplyToAll = value; return this; } private static Object responseType = ProjectUpdateCostResponse.class; public Object getResponseType() { return responseType; } } public static class ProjectUpdateCostResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProjectUpdateCostResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public ProjectUpdateCostResponse setSuccess(Boolean value) { this.Success = value; return this; } } }