/* Options: Date: 2025-12-06 07:26:21 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: ActivityPlanRequest.* //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/ActivityPlan", Verbs="POST,OPTIONS") // @Route(Path="/v1/ActivityPlan/{AgentId}/{DateFrom}/{DateTo}", Verbs="GET,OPTIONS") open class ActivityPlanRequest : IReturn { open var ActivityPlan:ActivityPlan? = null open var AgentId:Int? = null open var DateFrom:Date? = null open var DateTo:Date? = null open var ApplicationGoal:Int? = null open var AppointmentSetGoal:Int? = null open var LearningGoal:Int? = null open var MarketingGoal:Int? = null open var ReferralGoal:Int? = null open var LeadGoal:Int? = null open var ClientUpdateGoal:Int? = null open var FirstContactGoal:Int? = null open var FirstAppointmentGoal:Int? = null open var SecondAppointmentGoal:Int? = null open var SecondAppointmentSetGoal:Int? = null open var MonthlyCashFlowGoal:Int? = null open var YTDCashFlowGoal:Int? = null open var RecruitGoal:Int? = null companion object { private val responseType = ActivityPlanResponse::class.java } override fun getResponseType(): Any? = ActivityPlanRequest.responseType } open class ActivityPlanResponse { open var ResponseStatus:ResponseStatus? = null open var ActivityPlans:ArrayList = ArrayList() open var ActivityData:ActivityPlanExtended? = null } open class ActivityPlan { open var Id:Int? = null open var AgentId:Int? = null open var EventTypeId:Int? = null open var Goal:Int? = null open var DateFrom:Date? = null open var DateTo:Date? = null open var DateCreated:Date? = null open var MthlyCashFlow:Int? = null open var YTDCashFlow:Int? = null open var Recruit:Int? = null open var EventTypeName:String? = null open var Actual:Int? = null } open class ActivityPlanExtended { open var AppCount:Int? = null open var AvgFlow:Int? = null open var AvgTransfer:Int? = null open var AvgLife:Int? = null open var LifePerAnnuity:BigDecimal? = null open var FlowTransfer:BigDecimal? = null open var TransferRatio:BigDecimal? = null }