/* Options: Date: 2026-06-13 13:40:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEventSetMetricsRequest.* //ExcludeTypes: //InitializeCollections: False //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="/riskstore/eventset/metrics", Verbs="GET") open class GetEventSetMetricsRequest : IReturn, IGet { /** * The analysis id to get the event set metrics for */ @ApiMember(DataType="integer", Description="The analysis id to get the event set metrics for", Format="int64", IsRequired=true) open var analysisId:Long? = null companion object { private val responseType = GetEventSetMetricsResponse::class.java } override fun getResponseType(): Any? = GetEventSetMetricsRequest.responseType } open class GetEventSetMetricsResponse { open var dealEventSetMetrics:ArrayList? = null open var responseStatus:ResponseStatus? = null } open class DealEventSetMetric { open var sourceModelSystem:String? = null open var modelId:String? = null open var sourceEventSetId:String? = null open var eventSetId:Long? = null open var perspectiveId:Int? = null open var elAgg:Double? = null open var elOcc:Double? = null open var pAtt:Double? = null open var pExh:Double? = null open var sourceDealId:String? = null open var sourceDealSystem:String? = null open var approvedDateTimeUtc:Date? = null }