/* Options: Date: 2026-06-13 13:16:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEventSetYearEventLossTableRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } // @Route("/riskstore/eventset/yelt", "GET") export class GetEventSetYearEventLossTableRequest implements IReturn, IGet { /** @description 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 eventSetId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEventSetYearEventLossTableRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }