/* Options: Date: 2025-12-06 05:28:38 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: PolicyReportRequest.* //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/PolicyReport/{PolicyNumber}", Verbs="GET,OPTIONS") public static class PolicyReportRequest implements IReturn { public String PolicyNumber = null; public String getPolicyNumber() { return PolicyNumber; } public PolicyReportRequest setPolicyNumber(String value) { this.PolicyNumber = value; return this; } private static Object responseType = PolicyReportResponse.class; public Object getResponseType() { return responseType; } } public static class PolicyReportResponse { public ResponseStatus ResponseStatus = null; public ArrayList ReportData = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public PolicyReportResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getReportData() { return ReportData; } public PolicyReportResponse setReportData(ArrayList value) { this.ReportData = value; return this; } } public static class CommissionListing { public Integer ID = null; public Date ProcessDate = null; public Date PaymentDate = null; public Integer AgentId = null; public String Agent = null; public Integer OAgentID = null; public String OAgent = null; public String Policy = null; public String PolicyType = null; public String Insured = null; public BigDecimal Premium = null; public Double Part = null; public Double PartPercent = null; public BigDecimal Amount = null; public String Company = null; public BigDecimal Gross = null; public String AgentNumber = null; public Double CommissionRate = null; public String Description = null; public Integer getId() { return ID; } public CommissionListing setId(Integer value) { this.ID = value; return this; } public Date getProcessDate() { return ProcessDate; } public CommissionListing setProcessDate(Date value) { this.ProcessDate = value; return this; } public Date getPaymentDate() { return PaymentDate; } public CommissionListing setPaymentDate(Date value) { this.PaymentDate = value; return this; } public Integer getAgentId() { return AgentId; } public CommissionListing setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgent() { return Agent; } public CommissionListing setAgent(String value) { this.Agent = value; return this; } public Integer getOAgentID() { return OAgentID; } public CommissionListing setOAgentID(Integer value) { this.OAgentID = value; return this; } public String getOAgent() { return OAgent; } public CommissionListing setOAgent(String value) { this.OAgent = value; return this; } public String getPolicy() { return Policy; } public CommissionListing setPolicy(String value) { this.Policy = value; return this; } public String getPolicyType() { return PolicyType; } public CommissionListing setPolicyType(String value) { this.PolicyType = value; return this; } public String getInsured() { return Insured; } public CommissionListing setInsured(String value) { this.Insured = value; return this; } public BigDecimal getPremium() { return Premium; } public CommissionListing setPremium(BigDecimal value) { this.Premium = value; return this; } public Double getPart() { return Part; } public CommissionListing setPart(Double value) { this.Part = value; return this; } public Double getPartPercent() { return PartPercent; } public CommissionListing setPartPercent(Double value) { this.PartPercent = value; return this; } public BigDecimal getAmount() { return Amount; } public CommissionListing setAmount(BigDecimal value) { this.Amount = value; return this; } public String getCompany() { return Company; } public CommissionListing setCompany(String value) { this.Company = value; return this; } public BigDecimal getGross() { return Gross; } public CommissionListing setGross(BigDecimal value) { this.Gross = value; return this; } public String getAgentNumber() { return AgentNumber; } public CommissionListing setAgentNumber(String value) { this.AgentNumber = value; return this; } public Double getCommissionRate() { return CommissionRate; } public CommissionListing setCommissionRate(Double value) { this.CommissionRate = value; return this; } public String getDescription() { return Description; } public CommissionListing setDescription(String value) { this.Description = value; return this; } } }