/* Options: Date: 2025-12-06 08:32:06 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: ProjectInvoiceRequest.* //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/Invoice/{ProjectID}/{InvoiceStartDate}/{InvoiceEndDate}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class ProjectInvoiceRequest implements IReturn { public Integer ProjectID = null; public Date InvoiceStartDate = null; public Date InvoiceEndDate = null; public Integer getProjectID() { return ProjectID; } public ProjectInvoiceRequest setProjectID(Integer value) { this.ProjectID = value; return this; } public Date getInvoiceStartDate() { return InvoiceStartDate; } public ProjectInvoiceRequest setInvoiceStartDate(Date value) { this.InvoiceStartDate = value; return this; } public Date getInvoiceEndDate() { return InvoiceEndDate; } public ProjectInvoiceRequest setInvoiceEndDate(Date value) { this.InvoiceEndDate = value; return this; } private static Object responseType = ProjectInvoiceResponse.class; public Object getResponseType() { return responseType; } } public static class ProjectInvoiceResponse { public ResponseStatus ResponseStatus = null; public ArrayList ProjectInvoice = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProjectInvoiceResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getProjectInvoice() { return ProjectInvoice; } public ProjectInvoiceResponse setProjectInvoice(ArrayList value) { this.ProjectInvoice = value; return this; } } public static class ProjectInvoice { public String CostType = null; public String CostName = null; public BigDecimal CostToDate = null; public Integer JobID = null; public BigDecimal Rate = null; public Integer Hours = null; public String getCostType() { return CostType; } public ProjectInvoice setCostType(String value) { this.CostType = value; return this; } public String getCostName() { return CostName; } public ProjectInvoice setCostName(String value) { this.CostName = value; return this; } public BigDecimal getCostToDate() { return CostToDate; } public ProjectInvoice setCostToDate(BigDecimal value) { this.CostToDate = value; return this; } public Integer getJobID() { return JobID; } public ProjectInvoice setJobID(Integer value) { this.JobID = value; return this; } public BigDecimal getRate() { return Rate; } public ProjectInvoice setRate(BigDecimal value) { this.Rate = value; return this; } public Integer getHours() { return Hours; } public ProjectInvoice setHours(Integer value) { this.Hours = value; return this; } } }