/* Options: Date: 2026-06-13 13:21:46 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: GetEventSetYearEventLossTableRequest.* //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/yelt", Verbs="GET") open class GetEventSetYearEventLossTableRequest : IReturn, IGet { /** * The event set id to get the YELT for */ @ApiMember(DataType="integer", Description="The event set id to get the YELT for", Format="int64", IsRequired=true) open var eventSetId:Long? = null companion object { private val responseType = ByteArray::class.java } override fun getResponseType(): Any? = GetEventSetYearEventLossTableRequest.responseType }