/* Options: Date: 2026-06-22 22:55:26 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: PmAttentionRequest.* //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/pm/attention", Verbs="GET,OPTIONS") open class PmAttentionRequest : IReturn { companion object { private val responseType = PmAttentionResponse::class.java } override fun getResponseType(): Any? = PmAttentionRequest.responseType } open class PmAttentionResponse { open var Items:ArrayList = ArrayList() open var HighCount:Int? = null open var MedCount:Int? = null open var ResponseStatus:ResponseStatus? = null } open class PmAttentionItem { open var ProjectUID:String? = null open var ProjectName:String? = null open var Branch:String? = null open var Category:String? = null open var Severity:Int? = null open var Title:String? = null open var Detail:String? = null }