/* Options: Date: 2025-12-06 07:26:35 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: ActivityTrackerReportRequest.* //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/ActivityTracker/Report/{StartDate}/{EndDate}", Verbs="GET,OPTIONS") public static class ActivityTrackerReportRequest implements IReturn { public Date StartDate = null; public Date EndDate = null; public Date getStartDate() { return StartDate; } public ActivityTrackerReportRequest setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public ActivityTrackerReportRequest setEndDate(Date value) { this.EndDate = value; return this; } private static Object responseType = ActivityTrackerReportResponse.class; public Object getResponseType() { return responseType; } } public static class ActivityTrackerReportResponse { public ResponseStatus ResponseStatus = null; public ArrayList ReportData = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ActivityTrackerReportResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getReportData() { return ReportData; } public ActivityTrackerReportResponse setReportData(ArrayList value) { this.ReportData = value; return this; } } public static class ActivityTracker_Report { public String AgentName = null; public Integer SetAppt = null; public Integer FirstAppt = null; public Integer FollowAppt = null; public Integer FirstContact = null; public Integer Referral = null; public Integer ClientUpdate = null; public Integer SecondAppointment = null; public Integer Appl = null; public BigDecimal LifeAP = null; public BigDecimal AnnuityFlow = null; public BigDecimal AnnuityTransfer = null; public String getAgentName() { return AgentName; } public ActivityTracker_Report setAgentName(String value) { this.AgentName = value; return this; } public Integer getSetAppt() { return SetAppt; } public ActivityTracker_Report setSetAppt(Integer value) { this.SetAppt = value; return this; } public Integer getFirstAppt() { return FirstAppt; } public ActivityTracker_Report setFirstAppt(Integer value) { this.FirstAppt = value; return this; } public Integer getFollowAppt() { return FollowAppt; } public ActivityTracker_Report setFollowAppt(Integer value) { this.FollowAppt = value; return this; } public Integer getFirstContact() { return FirstContact; } public ActivityTracker_Report setFirstContact(Integer value) { this.FirstContact = value; return this; } public Integer getReferral() { return Referral; } public ActivityTracker_Report setReferral(Integer value) { this.Referral = value; return this; } public Integer getClientUpdate() { return ClientUpdate; } public ActivityTracker_Report setClientUpdate(Integer value) { this.ClientUpdate = value; return this; } public Integer getSecondAppointment() { return SecondAppointment; } public ActivityTracker_Report setSecondAppointment(Integer value) { this.SecondAppointment = value; return this; } public Integer getAppl() { return Appl; } public ActivityTracker_Report setAppl(Integer value) { this.Appl = value; return this; } public BigDecimal getLifeAP() { return LifeAP; } public ActivityTracker_Report setLifeAP(BigDecimal value) { this.LifeAP = value; return this; } public BigDecimal getAnnuityFlow() { return AnnuityFlow; } public ActivityTracker_Report setAnnuityFlow(BigDecimal value) { this.AnnuityFlow = value; return this; } public BigDecimal getAnnuityTransfer() { return AnnuityTransfer; } public ActivityTracker_Report setAnnuityTransfer(BigDecimal value) { this.AnnuityTransfer = value; return this; } } }