/* Options: Date: 2026-06-13 13:49:28 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: GetExpectedLossLastModifiedDateRequest.* //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/last-modified-date", Verbs="GET") open class GetExpectedLossLastModifiedDateRequest : IReturn, IGet { /** * 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) open var sourceDealSystem:String? = null companion object { private val responseType = GetExpectedLossLastModifiedDateResponse::class.java } override fun getResponseType(): Any? = GetExpectedLossLastModifiedDateRequest.responseType } open class GetExpectedLossLastModifiedDateResponse { open var lastModifiedUtcDate:Date? = null open var responseStatus:ResponseStatus? = null }