(* Options: Date: 2026-06-13 13:36:12 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetDealExpectedLossRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Nephila.RiskStore.ServiceModel.Requests open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type DealExpectedLoss() = member val SourceDealId:Int64 = new Int64() with get,set member val PerspectiveId:Int32 = new Int32() with get,set member val MetaRiskId:Int32 = new Int32() with get,set member val ELAgg:Decimal = new Decimal() with get,set member val ELOcc:Decimal = new Decimal() with get,set member val PAtt:Decimal = new Decimal() with get,set member val PExh:Decimal = new Decimal() with get,set [] type GetDealExpectedLossResponse() = member val DealExpectedLosses:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GetDealExpectedLossRequest() = interface IReturn interface IPost /// ///The source deal system (IGN) to get the date for /// [] member val SourceDealSystem:String = null with get,set /// ///The as of date to query /// [] member val AsOf:Nullable = new Nullable() with get,set /// ///The metarisks to query for /// [] member val MetaRiskIds:ResizeArray = null with get,set /// ///The perspectives to query for /// [] member val PerspectiveIds:ResizeArray = null with get,set /// ///The perspectives types to query for (0 - Vendor, 10 - Nephila 1.0, 16 - Nephila 2.0 etc...) /// [] member val PerspectiveTypeIds:ResizeArray = null with get,set /// ///The source deal ids to query for /// [] member val SourceDealIds:ResizeArray = null with get,set