/* Options: Date: 2026-06-13 13:53:19 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: GetDealExpectedLossesChangedSinceRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/riskstore/eventset/deal-expected-loss-changed-since", "GET") public class GetDealExpectedLossesChangedSinceRequest : IReturn, IGet, Codable { public typealias Return = GetDealExpectedLossesChangedSinceResponse /** * The source deal system (IGN) to get the date for */ // @ApiMember(DataType="string", Description="The source deal system (IGN) to get the date for", IsRequired=true) public var sourceDealSystem:String? /** * The date to get the changes since */ // @ApiMember(DataType="string", Description="The date to get the changes since", Format="date-time", IsRequired=true) public var sinceSysStartUtc:Date? required public init(){} } public class GetDealExpectedLossesChangedSinceResponse : Codable { public var changes:[Change]? public var responseStatus:ResponseStatus? required public init(){} } public class Change : Codable { public var sourceDealId:String? public var sysStartUtc:Date? required public init(){} }