/* Options: Date: 2026-06-13 13:38:01 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetEventSetMetricsRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/riskstore/eventset/metrics", "GET") public class GetEventSetMetricsRequest : IReturn, IGet, Codable { public typealias Return = GetEventSetMetricsResponse /** * 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) public var analysisId:Int? required public init(){} } public class GetEventSetMetricsResponse : Codable { public var dealEventSetMetrics:[DealEventSetMetric]? public var responseStatus:ResponseStatus? required public init(){} } public class DealEventSetMetric : Codable { public var sourceModelSystem:String? public var modelId:String? public var sourceEventSetId:String? public var eventSetId:Int? public var perspectiveId:Int? public var elAgg:Double? public var elOcc:Double? public var pAtt:Double? public var pExh:Double? public var sourceDealId:String? public var sourceDealSystem:String? public var approvedDateTimeUtc:Date? required public init(){} }