/* Options: Date: 2025-12-06 06:42:23 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: AddCommissionAdjustmentRequest.* //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/AddCommissionAdjustment", Verbs="POST,OPTIONS") public static class AddCommissionAdjustmentRequest implements IReturn { public CommAdjustment CommAdjustment = null; public CommAdjustment getCommAdjustment() { return CommAdjustment; } public AddCommissionAdjustmentRequest setCommAdjustment(CommAdjustment value) { this.CommAdjustment = value; return this; } private static Object responseType = AddCommissionAdjustmentResponse.class; public Object getResponseType() { return responseType; } } public static class AddCommissionAdjustmentResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public AddCommissionAdjustmentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class CommAdjustment { public Integer AgentId = null; public String AgentName = null; public String PolicyNumber = null; public String InsuredAnnuitant = null; public Date ProcessDate = null; public String Premium = null; public BigDecimal GrossCommission = null; public String CommRate = null; public String part = null; public BigDecimal Amount = null; public Date PaymentDate = null; public String PolicyType = null; public String Company = null; public Integer getAgentId() { return AgentId; } public CommAdjustment setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentName() { return AgentName; } public CommAdjustment setAgentName(String value) { this.AgentName = value; return this; } public String getPolicyNumber() { return PolicyNumber; } public CommAdjustment setPolicyNumber(String value) { this.PolicyNumber = value; return this; } public String getInsuredAnnuitant() { return InsuredAnnuitant; } public CommAdjustment setInsuredAnnuitant(String value) { this.InsuredAnnuitant = value; return this; } public Date getProcessDate() { return ProcessDate; } public CommAdjustment setProcessDate(Date value) { this.ProcessDate = value; return this; } public String getPremium() { return Premium; } public CommAdjustment setPremium(String value) { this.Premium = value; return this; } public BigDecimal getGrossCommission() { return GrossCommission; } public CommAdjustment setGrossCommission(BigDecimal value) { this.GrossCommission = value; return this; } public String getCommRate() { return CommRate; } public CommAdjustment setCommRate(String value) { this.CommRate = value; return this; } public String getPart() { return part; } public CommAdjustment setPart(String value) { this.part = value; return this; } public BigDecimal getAmount() { return Amount; } public CommAdjustment setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getPaymentDate() { return PaymentDate; } public CommAdjustment setPaymentDate(Date value) { this.PaymentDate = value; return this; } public String getPolicyType() { return PolicyType; } public CommAdjustment setPolicyType(String value) { this.PolicyType = value; return this; } public String getCompany() { return Company; } public CommAdjustment setCompany(String value) { this.Company = value; return this; } } }