/* Options: Date: 2025-12-06 07:11:14 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: ProductionRequest.* //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/Production", Verbs="GET") // @Route(Path="/v1/Production/DateRange/{StartDate}/{EndDate}", Verbs="GET") public static class ProductionRequest implements IReturn { public Date StartDate = null; public Date EndDate = null; public Date getStartDate() { return StartDate; } public ProductionRequest setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public ProductionRequest setEndDate(Date value) { this.EndDate = value; return this; } private static Object responseType = ProductionResponse.class; public Object getResponseType() { return responseType; } } public static class ProductionResponse { public ResponseStatus ResponseStatus = null; public ArrayList ReportData = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProductionResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getReportData() { return ReportData; } public ProductionResponse setReportData(ArrayList value) { this.ReportData = value; return this; } } public static class Production { public Integer AgentId = null; public Integer MVPID = null; public Integer AVPID = null; public Integer RVPID = null; public String FirstName = null; public String LastName = null; public String MiddleInitial = null; public BigDecimal AgentLevel = null; public String Rank = null; public String FullName = null; public Boolean IsMVP = null; public Boolean IsRVP = null; public Boolean IsAVP = null; public Integer PolicyCount = null; public Double AppCount = null; public BigDecimal Points = null; public BigDecimal Cashflow = null; public Integer getAgentId() { return AgentId; } public Production setAgentId(Integer value) { this.AgentId = value; return this; } public Integer getMvpid() { return MVPID; } public Production setMvpid(Integer value) { this.MVPID = value; return this; } public Integer getAvpid() { return AVPID; } public Production setAvpid(Integer value) { this.AVPID = value; return this; } public Integer getRvpid() { return RVPID; } public Production setRvpid(Integer value) { this.RVPID = value; return this; } public String getFirstName() { return FirstName; } public Production setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public Production setLastName(String value) { this.LastName = value; return this; } public String getMiddleInitial() { return MiddleInitial; } public Production setMiddleInitial(String value) { this.MiddleInitial = value; return this; } public BigDecimal getAgentLevel() { return AgentLevel; } public Production setAgentLevel(BigDecimal value) { this.AgentLevel = value; return this; } public String getRank() { return Rank; } public Production setRank(String value) { this.Rank = value; return this; } public String getFullName() { return FullName; } public Production setFullName(String value) { this.FullName = value; return this; } public Boolean getIsMVP() { return IsMVP; } public Production setIsMVP(Boolean value) { this.IsMVP = value; return this; } public Boolean getIsRVP() { return IsRVP; } public Production setIsRVP(Boolean value) { this.IsRVP = value; return this; } public Boolean getIsAVP() { return IsAVP; } public Production setIsAVP(Boolean value) { this.IsAVP = value; return this; } public Integer getPolicyCount() { return PolicyCount; } public Production setPolicyCount(Integer value) { this.PolicyCount = value; return this; } public Double getAppCount() { return AppCount; } public Production setAppCount(Double value) { this.AppCount = value; return this; } public BigDecimal getPoints() { return Points; } public Production setPoints(BigDecimal value) { this.Points = value; return this; } public BigDecimal getCashflow() { return Cashflow; } public Production setCashflow(BigDecimal value) { this.Cashflow = value; return this; } } }