/* Options: Date: 2025-12-06 08:50:55 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: SmartsheetsAggregateLifeRequest.* //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/Smartsheets/AggregateLife/{Type}/{StartDate}/{EndDate}", Verbs="GET,OPTIONS") // @Route(Path="/v1/Smartsheets/AggregateLife/{Type}/{StartDate}/{EndDate}/{AgentID}", Verbs="GET,OPTIONS") public static class SmartsheetsAggregateLifeRequest implements IReturn { public String Type = null; public Date StartDate = null; public Date EndDate = null; public Integer AgentID = null; public String getType() { return Type; } public SmartsheetsAggregateLifeRequest setType(String value) { this.Type = value; return this; } public Date getStartDate() { return StartDate; } public SmartsheetsAggregateLifeRequest setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public SmartsheetsAggregateLifeRequest setEndDate(Date value) { this.EndDate = value; return this; } public Integer getAgentID() { return AgentID; } public SmartsheetsAggregateLifeRequest setAgentID(Integer value) { this.AgentID = value; return this; } private static Object responseType = SmartsheetsAggregateAllResponse.class; public Object getResponseType() { return responseType; } } public static class SmartsheetsAggregateAllResponse { public ResponseStatus ResponseStatus = null; public ArrayList SmartsheetAggregates = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SmartsheetsAggregateAllResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSmartsheetAggregates() { return SmartsheetAggregates; } public SmartsheetsAggregateAllResponse setSmartsheetAggregates(ArrayList value) { this.SmartsheetAggregates = value; return this; } } public static class SmartsheetsAggregate { public Integer AgentID = null; public String AgentName = null; public BigDecimal Apps = null; public BigDecimal LifePrem = null; public BigDecimal TransferPrem = null; public BigDecimal FlowPrem = null; public String PolicyNumber = null; public Date AppDate = null; public String FirstName = null; public String LastName = null; public BigDecimal CPT = null; public Integer getAgentID() { return AgentID; } public SmartsheetsAggregate setAgentID(Integer value) { this.AgentID = value; return this; } public String getAgentName() { return AgentName; } public SmartsheetsAggregate setAgentName(String value) { this.AgentName = value; return this; } public BigDecimal getApps() { return Apps; } public SmartsheetsAggregate setApps(BigDecimal value) { this.Apps = value; return this; } public BigDecimal getLifePrem() { return LifePrem; } public SmartsheetsAggregate setLifePrem(BigDecimal value) { this.LifePrem = value; return this; } public BigDecimal getTransferPrem() { return TransferPrem; } public SmartsheetsAggregate setTransferPrem(BigDecimal value) { this.TransferPrem = value; return this; } public BigDecimal getFlowPrem() { return FlowPrem; } public SmartsheetsAggregate setFlowPrem(BigDecimal value) { this.FlowPrem = value; return this; } public String getPolicyNumber() { return PolicyNumber; } public SmartsheetsAggregate setPolicyNumber(String value) { this.PolicyNumber = value; return this; } public Date getAppDate() { return AppDate; } public SmartsheetsAggregate setAppDate(Date value) { this.AppDate = value; return this; } public String getFirstName() { return FirstName; } public SmartsheetsAggregate setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public SmartsheetsAggregate setLastName(String value) { this.LastName = value; return this; } public BigDecimal getCpt() { return CPT; } public SmartsheetsAggregate setCpt(BigDecimal value) { this.CPT = value; return this; } } }