/* Options: Date: 2026-06-13 13:27:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetEventSetYearEventLossTableRequest.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/riskstore/eventset/yelt", Verbs="GET") public static class GetEventSetYearEventLossTableRequest implements 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) public Long eventSetId = null; public Long getEventSetId() { return eventSetId; } public GetEventSetYearEventLossTableRequest setEventSetId(Long value) { this.eventSetId = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }