/* Options: Date: 2025-12-06 07:08:09 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: AgentPolicyCountDrilldownRequest.* //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/AgentPolicyCountDrilldown", Verbs="GET,OPTIONS") // @Route(Path="/v1/AgentPolicyCountDrilldown/{AgentId}", Verbs="GET,OPTIONS") open class AgentPolicyCountDrilldownRequest : IReturn { open var AgentId:Int? = null companion object { private val responseType = AgentPolicyCountDrilldownResponse::class.java } override fun getResponseType(): Any? = AgentPolicyCountDrilldownRequest.responseType } open class AgentPolicyCountDrilldownResponse { open var ResponseStatus:ResponseStatus? = null open var result:ArrayList = ArrayList() } open class AgentPolicyCountDrilldown { open var PolicyType:String? = null open var TotalLifeTime:Int? = null open var TotalLifeTimeStartDate:Int? = null open var Total365:Int? = null open var TotalYtd:Int? = null open var TotalMtd:Int? = null }