/* Options: Date: 2026-06-13 13:19:53 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEventSetYearEventLossTableRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/riskstore/eventset/yelt", "GET") class GetEventSetYearEventLossTableRequest implements IReturn, IGet, IConvertible { /** * 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) int? eventSetId; GetEventSetYearEventLossTableRequest({this.eventSetId}); GetEventSetYearEventLossTableRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { eventSetId = json['eventSetId']; return this; } Map toJson() => { 'eventSetId': eventSetId }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "GetEventSetYearEventLossTableRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'GetEventSetYearEventLossTableRequest': TypeInfo(TypeOf.Class, create:() => GetEventSetYearEventLossTableRequest()), });