/* Options: Date: 2025-12-06 08:18:28 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ActivityTrackerReportRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/ActivityTracker/Report/{StartDate}/{EndDate}", Verbs="GET,OPTIONS") open class ActivityTrackerReportRequest : IReturn { open var StartDate:Date? = null open var EndDate:Date? = null companion object { private val responseType = ActivityTrackerReportResponse::class.java } override fun getResponseType(): Any? = ActivityTrackerReportRequest.responseType } open class ActivityTrackerReportResponse { open var ResponseStatus:ResponseStatus? = null open var ReportData:ArrayList = ArrayList() } open class ActivityTracker_Report { open var AgentName:String? = null open var SetAppt:Int? = null open var FirstAppt:Int? = null open var FollowAppt:Int? = null open var FirstContact:Int? = null open var Referral:Int? = null open var ClientUpdate:Int? = null open var SecondAppointment:Int? = null open var Appl:Int? = null open var LifeAP:BigDecimal? = null open var AnnuityFlow:BigDecimal? = null open var AnnuityTransfer:BigDecimal? = null }