/* Options: Date: 2026-07-08 21:32:44 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: QcSummaryRequest.* //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/projects/{ProjectID}/qc-summary", Verbs="GET,OPTIONS") open class QcSummaryRequest : IReturn { open var ProjectID:Int? = null companion object { private val responseType = QcSummaryResponse::class.java } override fun getResponseType(): Any? = QcSummaryRequest.responseType } open class QcSummaryResponse { open var ResponseStatus:ResponseStatus? = null open var ProjectID:Int? = null open var Summary:QcSummary? = null } open class QcSummary { open var TestsThisMonth:Int? = null open var TestsTotal:Int? = null open var PassCount:Int? = null open var FailCount:Int? = null open var GradedCount:Int? = null open var PassRate:Int? = null open var RetestCount:Int? = null open var OpenNcrCount:Int? = null open var PendingHoldPoints:Int? = null }