/* Options: Date: 2026-06-13 13:41:10 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: RefreshILEventSetRiskBucketLossBandCountsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/riskstore/maintenance/refresh-il-eventset-riskbucket-lossband-counts", "POST") class RefreshILEventSetRiskBucketLossBandCountsRequest implements IReturnVoid, IPost, IConvertible { /** * List of ILEventSetIds to refresh (leave empty for all) */ // @ApiMember(Description="List of ILEventSetIds to refresh (leave empty for all)") List? ilEventSetIds; RefreshILEventSetRiskBucketLossBandCountsRequest({this.ilEventSetIds}); RefreshILEventSetRiskBucketLossBandCountsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ilEventSetIds = JsonConverters.fromJson(json['ilEventSetIds'],'List',context!); return this; } Map toJson() => { 'ilEventSetIds': JsonConverters.toJson(ilEventSetIds,'List',context!) }; createResponse() {} getTypeName() => "RefreshILEventSetRiskBucketLossBandCountsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'RefreshILEventSetRiskBucketLossBandCountsRequest': TypeInfo(TypeOf.Class, create:() => RefreshILEventSetRiskBucketLossBandCountsRequest()), });