/* Options: Date: 2026-08-11 14:15:15 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: EngineHealthRequest.* //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/engine/health", Verbs="GET,OPTIONS") open class EngineHealthRequest : IReturn { companion object { private val responseType = EngineHealthResponse::class.java } override fun getResponseType(): Any? = EngineHealthRequest.responseType } open class EngineHealthResponse { open var Runs30:Int? = null open var Succeeded30:Int? = null open var Failed30:Int? = null open var Waiting:Int? = null open var OpenErrorGroups:Int? = null open var AffectedRuns:Int? = null open var SlaBreaches:Int? = null open var Throughput:ArrayList = ArrayList() open var ByVertical:ArrayList = ArrayList() open var ResponseStatus:ResponseStatus? = null } open class WorkflowThroughputView { open var Hour:Int? = null open var Ok:Int? = null open var Failed:Int? = null } open class WorkflowVerticalHealthView { open var Vertical:String? = null open var Workflows:Int? = null open var Runs30:Int? = null open var Fail30:Int? = null open var Waiting:Int? = null }