(* Options: Date: 2026-06-13 13:38:41 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: GetDealExpectedLossesChangedSinceRequest.* //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 Change() = member val SourceDealId:String = null with get,set member val SysStartUtc:DateTime = new DateTime() with get,set [] type GetDealExpectedLossesChangedSinceResponse() = member val Changes:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GetDealExpectedLossesChangedSinceRequest() = interface IReturn interface IGet /// ///The source deal system (IGN) to get the date for /// [] member val SourceDealSystem:String = null with get,set /// ///The date to get the changes since /// [] member val SinceSysStartUtc:DateTime = new DateTime() with get,set