/* Options: Date: 2025-12-06 06:26:02 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: CommissionBatchSecuritiesRequest.* //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/CommissionBatchSecurities", Verbs="GET,POST,OPTIONS") // @Route(Path="/v1/CommissionBatchSecurities/{CommissionBatchId}", Verbs="GET,OPTIONS") public static class CommissionBatchSecuritiesRequest implements IReturn { public Integer CommissionBatchId = null; public ArrayList Ledger = new ArrayList(); public Integer getCommissionBatchId() { return CommissionBatchId; } public CommissionBatchSecuritiesRequest setCommissionBatchId(Integer value) { this.CommissionBatchId = value; return this; } public ArrayList getLedger() { return Ledger; } public CommissionBatchSecuritiesRequest setLedger(ArrayList value) { this.Ledger = value; return this; } private static Object responseType = CommissionBatchSecuritiesResponse.class; public Object getResponseType() { return responseType; } } public static class CommissionBatchSecuritiesResponse { public ResponseStatus ResponseStatus = null; public ArrayList ReportData = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CommissionBatchSecuritiesResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getReportData() { return ReportData; } public CommissionBatchSecuritiesResponse setReportData(ArrayList value) { this.ReportData = value; return this; } } public static class LedgerExtended extends Ledger { public String AgentFirstName = null; public String AgentLastName = null; public String AgentName = null; public BigDecimal AgentLevel = null; public String PayChexId = null; public String getAgentFirstName() { return AgentFirstName; } public LedgerExtended setAgentFirstName(String value) { this.AgentFirstName = value; return this; } public String getAgentLastName() { return AgentLastName; } public LedgerExtended setAgentLastName(String value) { this.AgentLastName = value; return this; } public String getAgentName() { return AgentName; } public LedgerExtended setAgentName(String value) { this.AgentName = value; return this; } public BigDecimal getAgentLevel() { return AgentLevel; } public LedgerExtended setAgentLevel(BigDecimal value) { this.AgentLevel = value; return this; } public String getPayChexId() { return PayChexId; } public LedgerExtended setPayChexId(String value) { this.PayChexId = value; return this; } } public static class Ledger { public Integer LedgerId = null; public Integer AgentId = null; public Integer CommissionBatchId = null; public String Rank = null; public BigDecimal Commissions = null; public BigDecimal Clawbacks = null; public BigDecimal Adjustments = null; public BigDecimal PreviousBalance = null; public BigDecimal ASAPCharges = null; public BigDecimal Payout = null; public BigDecimal BalanceForward = null; public Integer getLedgerId() { return LedgerId; } public Ledger setLedgerId(Integer value) { this.LedgerId = value; return this; } public Integer getAgentId() { return AgentId; } public Ledger setAgentId(Integer value) { this.AgentId = value; return this; } public Integer getCommissionBatchId() { return CommissionBatchId; } public Ledger setCommissionBatchId(Integer value) { this.CommissionBatchId = value; return this; } public String getRank() { return Rank; } public Ledger setRank(String value) { this.Rank = value; return this; } public BigDecimal getCommissions() { return Commissions; } public Ledger setCommissions(BigDecimal value) { this.Commissions = value; return this; } public BigDecimal getClawbacks() { return Clawbacks; } public Ledger setClawbacks(BigDecimal value) { this.Clawbacks = value; return this; } public BigDecimal getAdjustments() { return Adjustments; } public Ledger setAdjustments(BigDecimal value) { this.Adjustments = value; return this; } public BigDecimal getPreviousBalance() { return PreviousBalance; } public Ledger setPreviousBalance(BigDecimal value) { this.PreviousBalance = value; return this; } public BigDecimal getAsapCharges() { return ASAPCharges; } public Ledger setAsapCharges(BigDecimal value) { this.ASAPCharges = value; return this; } public BigDecimal getPayout() { return Payout; } public Ledger setPayout(BigDecimal value) { this.Payout = value; return this; } public BigDecimal getBalanceForward() { return BalanceForward; } public Ledger setBalanceForward(BigDecimal value) { this.BalanceForward = value; return this; } } }