/* Options: Date: 2025-12-06 08:17:01 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: AdjustmentReportRequest.* //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/AdjustmentReport/{ParamStartDate}/{ParamEndDate}", Verbs="GET") public static class AdjustmentReportRequest implements IReturn { public Date ParamStartDate = null; public Date ParamEndDate = null; public Date getParamStartDate() { return ParamStartDate; } public AdjustmentReportRequest setParamStartDate(Date value) { this.ParamStartDate = value; return this; } public Date getParamEndDate() { return ParamEndDate; } public AdjustmentReportRequest setParamEndDate(Date value) { this.ParamEndDate = value; return this; } private static Object responseType = AdjustmentReportResponse.class; public Object getResponseType() { return responseType; } } public static class AdjustmentReportResponse { public ResponseStatus ResponseStatus = null; public ArrayList ReportData = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AdjustmentReportResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getReportData() { return ReportData; } public AdjustmentReportResponse setReportData(ArrayList value) { this.ReportData = value; return this; } } public static class Adjustment { public Integer ID = null; public Date AdjustmentDate = null; public String Agent = null; public String Reason = null; public BigDecimal Amount = null; public String Approved = null; public String AdjType = null; public String Income = null; public String Paid = null; public String BalanceForward = null; public String BalanceDate = null; public Integer getId() { return ID; } public Adjustment setId(Integer value) { this.ID = value; return this; } public Date getAdjustmentDate() { return AdjustmentDate; } public Adjustment setAdjustmentDate(Date value) { this.AdjustmentDate = value; return this; } public String getAgent() { return Agent; } public Adjustment setAgent(String value) { this.Agent = value; return this; } public String getReason() { return Reason; } public Adjustment setReason(String value) { this.Reason = value; return this; } public BigDecimal getAmount() { return Amount; } public Adjustment setAmount(BigDecimal value) { this.Amount = value; return this; } public String getApproved() { return Approved; } public Adjustment setApproved(String value) { this.Approved = value; return this; } public String getAdjType() { return AdjType; } public Adjustment setAdjType(String value) { this.AdjType = value; return this; } public String getIncome() { return Income; } public Adjustment setIncome(String value) { this.Income = value; return this; } public String getPaid() { return Paid; } public Adjustment setPaid(String value) { this.Paid = value; return this; } public String getBalanceForward() { return BalanceForward; } public Adjustment setBalanceForward(String value) { this.BalanceForward = value; return this; } public String getBalanceDate() { return BalanceDate; } public Adjustment setBalanceDate(String value) { this.BalanceDate = value; return this; } } }