/* Options: Date: 2025-12-06 07:24:24 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: CashFlowRequest.* //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/CashFlowReport/{FromDate}/{ToDate}", Verbs="Get,OPTIONS") public static class CashFlowRequest implements IReturn { public Date FromDate = null; public Date ToDate = null; public Date getFromDate() { return FromDate; } public CashFlowRequest setFromDate(Date value) { this.FromDate = value; return this; } public Date getToDate() { return ToDate; } public CashFlowRequest setToDate(Date value) { this.ToDate = value; return this; } private static Object responseType = CashFlowResponse.class; public Object getResponseType() { return responseType; } } public static class CashFlowResponse { public ResponseStatus ResponseStatus = null; public ArrayList CashFlow = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CashFlowResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getCashFlow() { return CashFlow; } public CashFlowResponse setCashFlow(ArrayList value) { this.CashFlow = value; return this; } } public static class CashFlow { public Integer AgentID = null; public String AgentName = null; public BigDecimal PersonalCashFlow = null; public BigDecimal DownlineCashFlow = null; public Integer getAgentID() { return AgentID; } public CashFlow setAgentID(Integer value) { this.AgentID = value; return this; } public String getAgentName() { return AgentName; } public CashFlow setAgentName(String value) { this.AgentName = value; return this; } public BigDecimal getPersonalCashFlow() { return PersonalCashFlow; } public CashFlow setPersonalCashFlow(BigDecimal value) { this.PersonalCashFlow = value; return this; } public BigDecimal getDownlineCashFlow() { return DownlineCashFlow; } public CashFlow setDownlineCashFlow(BigDecimal value) { this.DownlineCashFlow = value; return this; } } }